diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2013-08-28 14:23:10 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-08-29 11:40:55 -0700 |
commit | 2a6981833df11d82a956ab17f2284418b6eecafe (patch) | |
tree | 729498fc56d5e2580ce41a366c4575125b9698f8 /contrib/remote-helpers | |
parent | remote-hg: add missing &&s in the test (diff) | |
download | tgif-2a6981833df11d82a956ab17f2284418b6eecafe.tar.xz |
remote-hg: improve basic test
It appears 'let' is not present in all shells.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/remote-helpers')
-rwxr-xr-x | contrib/remote-helpers/test-hg.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/remote-helpers/test-hg.sh b/contrib/remote-helpers/test-hg.sh index 94b0bba825..5a6f7451ba 100755 --- a/contrib/remote-helpers/test-hg.sh +++ b/contrib/remote-helpers/test-hg.sh @@ -75,10 +75,10 @@ check_push () { grep "^ [a-f0-9]*\.\.[a-f0-9]* *${branch} -> ${branch}$" error || ref_ret=1 ;; esac - let 'ref_ret' && echo "match for '$branch' failed" && break + test $ref_ret -ne 0 && echo "match for '$branch' failed" && break done - if let 'expected_ret != ret || ref_ret' + if test $expected_ret -ne $ret -o $ref_ret -ne 0 then return 1 fi |