diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-09-02 01:31:21 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-09-02 01:31:21 +0200 |
commit | 2953140a6593c14d68ef2dbd5efaccb0d59da925 (patch) | |
tree | 87d96a1d6451a68c75deb4c45761a0cbbe0e3375 /git-submodule.sh | |
parent | Merge branch 'ah/reflog-typofix-in-error' (diff) | |
parent | git-submodule: remove extraneous space from error message (diff) | |
download | git-2953140a6593c14d68ef2dbd5efaccb0d59da925.tar.xz git-2953140a6593c14d68ef2dbd5efaccb0d59da925.zip |
Merge branch 'ah/submodule-typofix-in-error'
Error string fix.
* ah/submodule-typofix-in-error:
git-submodule: remove extraneous space from error message
Diffstat (limited to 'git-submodule.sh')
-rwxr-xr-x | git-submodule.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-submodule.sh b/git-submodule.sh index 36797c3c00..25b1ddf252 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -904,7 +904,7 @@ Maybe you want to use 'update --init'?")" ;; !*) command="${update_module#!}" - die_msg="$(eval_gettext "Execution of '\$command \$sha1' failed in submodule path '\$prefix\$sm_path'")" + die_msg="$(eval_gettext "Execution of '\$command \$sha1' failed in submodule path '\$prefix\$sm_path'")" say_msg="$(eval_gettext "Submodule path '\$prefix\$sm_path': '\$command \$sha1'")" must_die_on_failure=yes ;; |