From 3f32628c164bdb6da810502b08cc769f97742ba1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D0=B5=D1=80=D0=B3=D0=B5=D0=B9=20=D0=A1=D0=B5=D1=80?= =?UTF-8?q?=D0=B3=D0=B5=D0=B5=D0=B2?= Date: Wed, 14 Jun 2017 12:24:30 +0300 Subject: [PATCH] commands: typo fix for fetch errors messages --- commands/command_fetch.go | 2 +- commands/command_pull.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/command_fetch.go b/commands/command_fetch.go index d938da3b..e1fc12d0 100644 --- a/commands/command_fetch.go +++ b/commands/command_fetch.go @@ -105,7 +105,7 @@ func fetchCommand(cmd *cobra.Command, args []string) { if !success { c := getAPIClient() e := c.Endpoints.Endpoint("download", cfg.CurrentRemote) - Exit("error: failed to push some objects to '%s'", e.Url) + Exit("error: failed to fetch some objects from '%s'", e.Url) } } diff --git a/commands/command_pull.go b/commands/command_pull.go index c2f7f22c..de4f56d5 100644 --- a/commands/command_pull.go +++ b/commands/command_pull.go @@ -113,7 +113,7 @@ func pull(remote string, filter *filepathfilter.Filter) { if !success { c := getAPIClient() e := c.Endpoints.Endpoint("download", remote) - Exit("error: failed to push some objects to '%s'", e.Url) + Exit("error: failed to fetch some objects from '%s'", e.Url) } }