diff options
author | Alex Henrie <alexhenrie24@gmail.com> | 2015-08-26 22:26:19 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-08-28 11:57:24 -0700 |
commit | b80fa842ed5029853f7f1fb6bdc9171257b1db55 (patch) | |
tree | 50bbf996946cfaac4e258f43f5c921adc15178fb | |
parent | submodule update: allow custom command to update submodule working tree (diff) | |
download | tgif-b80fa842ed5029853f7f1fb6bdc9171257b1db55.tar.xz |
git-submodule: remove extraneous space from error message
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Acked-by: Chris Packham <judge.packham@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-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 c87515de10..87d7ecff39 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -862,7 +862,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 ;; |