From b80fa842ed5029853f7f1fb6bdc9171257b1db55 Mon Sep 17 00:00:00 2001 From: Alex Henrie Date: Wed, 26 Aug 2015 22:26:19 -0600 Subject: [PATCH] git-submodule: remove extraneous space from error message Signed-off-by: Alex Henrie Acked-by: Chris Packham Signed-off-by: Junio C Hamano --- git-submodule.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-submodule.sh b/git-submodule.sh index c87515de100..87d7ecff392 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 ;;