diff options
author | Pete Wyckoff <pw@padd.com> | 2012-02-26 16:37:26 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-02-27 01:19:22 +0100 |
commit | 8d93a5ac68d12a01681a0c2a8d2f799da5cb9fa9 (patch) | |
tree | ad36ead3fccd4ef3c7faa057e9fc246d2395a681 /t/t9809-git-p4-client-view.sh | |
parent | git-p4: fix submit regression with clientSpec and subdir clone (diff) | |
download | git-8d93a5ac68d12a01681a0c2a8d2f799da5cb9fa9.tar.xz git-8d93a5ac68d12a01681a0c2a8d2f799da5cb9fa9.zip |
git-p4: remove bash-ism in t9809
Plain old $# works to count the number of arguments in
either bash or dash, even if the arguments have spaces.
Based-on-patch-by: Vitor Antunes <vitor.hda@gmail.com>
Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9809-git-p4-client-view.sh')
-rwxr-xr-x | t/t9809-git-p4-client-view.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9809-git-p4-client-view.sh b/t/t9809-git-p4-client-view.sh index 96426414aa..b0c6d4391d 100755 --- a/t/t9809-git-p4-client-view.sh +++ b/t/t9809-git-p4-client-view.sh @@ -31,7 +31,7 @@ client_view() { # check_files_exist() { ok=0 && - num=${#@} && + num=$# && for arg ; do test_path_is_file "$arg" && ok=$(($ok + 1)) |