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) } }