Merge pull request #600 from Retucex/master

Fixed typo in error message displayed
This commit is contained in:
Peter Cottle 2019-09-16 07:36:55 -07:00 committed by GitHub
commit c47b927e23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,7 +83,7 @@ var assertOriginSpecified = function(generalArgs) {
if (generalArgs[0] !== 'origin') {
throw new GitError({
msg: intl.todo(
generalArgs[0] + ' is not a remote in your repository! try adding origin that argument'
generalArgs[0] + ' is not a remote in your repository! try adding origin to that argument'
)
});
}