diff options
author | Matthew Ogilvie <mmogilvi_git@miniinfo.net> | 2009-11-28 11:38:55 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-11-29 23:09:47 -0800 |
commit | 5d59a4016bdc068cd49e2a1c43caf4fa59896391 (patch) | |
tree | 670c176a37e7e24ae722a1887ef5473a562ebf0f /t/t7406-submodule-update.sh | |
parent | 42ac496edc3dcd1f0b272da62401f62c47f93312 (diff) | |
download | git-5d59a4016bdc068cd49e2a1c43caf4fa59896391.tar.gz |
t3409 t4107 t7406 t9150: use dashless commands
This is needed to allow test suite to run against a standard
install bin directory instead of GIT_EXEC_PATH.
Signed-off-by: Matthew Ogilvie <mmogilvi_git@miniinfo.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7406-submodule-update.sh')
-rwxr-xr-x | t/t7406-submodule-update.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t7406-submodule-update.sh b/t/t7406-submodule-update.sh index 2d33d9efec..8e2449d244 100755 --- a/t/t7406-submodule-update.sh +++ b/t/t7406-submodule-update.sh @@ -14,8 +14,8 @@ submodule and "git submodule update --rebase/--merge" does not detach the HEAD. compare_head() { - sha_master=`git-rev-list --max-count=1 master` - sha_head=`git-rev-list --max-count=1 HEAD` + sha_master=`git rev-list --max-count=1 master` + sha_head=`git rev-list --max-count=1 HEAD` test "$sha_master" = "$sha_head" } |