summaryrefslogtreecommitdiff
path: root/git-submodule.sh
diff options
context:
space:
mode:
authorAlex Henrie <alexhenrie24@gmail.com>2015-08-27 04:26:19 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-08-28 18:57:24 (GMT)
commitb80fa842ed5029853f7f1fb6bdc9171257b1db55 (patch)
tree50bbf996946cfaac4e258f43f5c921adc15178fb /git-submodule.sh
parent6cb5728c43f34a7348e128b44b80d00b9417cb19 (diff)
downloadgit-b80fa842ed5029853f7f1fb6bdc9171257b1db55.zip
git-b80fa842ed5029853f7f1fb6bdc9171257b1db55.tar.gz
git-b80fa842ed5029853f7f1fb6bdc9171257b1db55.tar.bz2
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>
Diffstat (limited to 'git-submodule.sh')
-rwxr-xr-xgit-submodule.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-submodule.sh b/git-submodule.sh
index c87515d..87d7ecf 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
;;