summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Henrie <alexhenrie24@gmail.com>2015-08-26 22:26:19 -0600
committerJunio C Hamano <gitster@pobox.com>2015-08-28 11:57:24 -0700
commitb80fa842ed5029853f7f1fb6bdc9171257b1db55 (patch)
tree50bbf996946cfaac4e258f43f5c921adc15178fb
parent6cb5728c43f34a7348e128b44b80d00b9417cb19 (diff)
downloadgit-ah/submodule-typofix-in-error.tar.gz
git-submodule: remove extraneous space from error messageah/submodule-typofix-in-error
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-xgit-submodule.sh2
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
;;