From: CJ van den Berg Date: Wed, 4 Jul 2007 16:22:14 +0000 (+0200) Subject: git-submodule: Fix two instances of the same typo X-Git-Tag: v1.5.3-rc1~94 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=41c7c1bd6f151f351365451acbf9fade6eb6044c;p=git.git git-submodule: Fix two instances of the same typo They break the output of git submodule status. Signed-off-by: Junio C Hamano --- diff --git a/git-submodule.sh b/git-submodule.sh index 0ba016135..1f0cb99dc 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -234,7 +234,7 @@ modules_list() continue; fi revname=$(unset GIT_DIR && cd "$path" && git describe --tags $sha1) - set_name_rev "$path" $"sha1" + set_name_rev "$path" "$sha1" if git diff-files --quiet -- "$path" then say " $sha1 $path$revname" @@ -242,7 +242,7 @@ modules_list() if test -z "$cached" then sha1=$(unset GIT_DIR && cd "$path" && git rev-parse --verify HEAD) - set_name_rev "$path" $"sha1" + set_name_rev "$path" "$sha1" fi say "+$sha1 $path$revname" fi