##// END OF EJS Templates
test-fileset: remove bashism, use test instead of '[[ ]]'...
Yuya Nishihara -
r25587:49fb24f7 default
parent child Browse files
Show More
@@ -226,7 +226,7 b' saverev property is enough to alter the '
226 226 b
227 227 $ oldnode=`hg log -r tip -T "{node}\n"`
228 228 $ newnode=`hg log -R ../converted -r tip -T "{node}\n"`
229 $ [[ "$oldnode" != "$newnode" ]] || echo "nothing changed"
229 $ [ "$oldnode" != "$newnode" ] || echo "nothing changed"
230 230
231 231 Test with a revision
232 232
General Comments 0
You need to be logged in to leave comments. Login now