Fixed typo in error message displayed

This commit is contained in:
Samuel H Leclerc 2019-09-15 15:27:38 +00:00
parent 8dbc56c42a
commit 512264119d

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