From: Alex Henrie Date: Thu, 27 Aug 2015 04:26:19 +0000 (-0600) Subject: git-submodule: remove extraneous space from error message X-Git-Tag: v2.5.3~3^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/b80fa842ed5029853f7f1fb6bdc9171257b1db55?ds=inline;hp=--cc git-submodule: remove extraneous space from error message Signed-off-by: Alex Henrie Acked-by: Chris Packham Signed-off-by: Junio C Hamano --- b80fa842ed5029853f7f1fb6bdc9171257b1db55 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 ;;