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 /git-submodule.sh | |
parent | 6cb5728c43f34a7348e128b44b80d00b9417cb19 (diff) | |
download | git-b80fa842ed5029853f7f1fb6bdc9171257b1db55.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>
Diffstat (limited to 'git-submodule.sh')
-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 ;; |