diff options
author | Tay Ray Chuan <rctay89@gmail.com> | 2011-10-21 21:49:35 +0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-10-21 10:01:50 -0700 |
commit | 1e42258acd3787f7a817f4265da03c709d2e2aa1 (patch) | |
tree | 8f120e03c943651f088863fb594ef946a7c2cb9b /git-submodule.sh | |
parent | 501770e1bb5d132ae4f79aa96715f07f6b84e1f6 (diff) | |
download | git-1e42258acd3787f7a817f4265da03c709d2e2aa1.tar.gz |
submodule: whitespace fix
Replace SPs with TAB.
Signed-off-by: Tay Ray Chuan <rctay89@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-submodule.sh')
-rwxr-xr-x | git-submodule.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/git-submodule.sh b/git-submodule.sh index 7576d14769..8e9e5eaaf8 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -104,9 +104,9 @@ module_name() re=$(printf '%s\n' "$1" | sed -e 's/[].[^$\\*]/\\&/g') name=$( git config -f .gitmodules --get-regexp '^submodule\..*\.path$' | sed -n -e 's|^submodule\.\(.*\)\.path '"$re"'$|\1|p' ) - test -z "$name" && - die "$(eval_gettext "No submodule mapping found in .gitmodules for path '\$path'")" - echo "$name" + test -z "$name" && + die "$(eval_gettext "No submodule mapping found in .gitmodules for path '\$path'")" + echo "$name" } # |