Merge pull request #2327 from gurugray/message-fix

commands: typo fix for fetch errors messages
This commit is contained in:
Taylor Blau 2017-06-14 09:32:55 -06:00 committed by GitHub
commit 1e60a1a3ce
2 changed files with 2 additions and 2 deletions

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

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