##// END OF EJS Templates
tests: replace [[]] bashism with portable [] invocation...
Augie Fackler -
r44280:36444ddd default
parent child Browse files
Show More
@@ -493,7 +493,7 b' Modifying a file while the editor is ope'
493 493 $ sleep 1
494 494 $ echo delta >> foo
495 495 $ sleep 3
496 $ if (hg diff -c . | grep 'delta' >/dev/null) || [[ -n "$(hg status)" ]]; then
496 $ if (hg diff -c . | grep 'delta' >/dev/null) || [ -n "$(hg status)" ]; then
497 497 > echo "OK."
498 498 > else
499 499 > echo "Bug detected. 'delta' is not part of the commit OR the wdir"
General Comments 0
You need to be logged in to leave comments. Login now