##// END OF EJS Templates
test-remove: fix for non-gnu find
Florent Guillaume -
r6357:62980dd8 default
parent child Browse files
Show More
@@ -4,7 +4,7 b' remove() {'
4 hg rm $@
4 hg rm $@
5 hg st
5 hg st
6 # do not use ls -R, which recurses in .hg subdirs on Mac OS X 10.5
6 # do not use ls -R, which recurses in .hg subdirs on Mac OS X 10.5
7 find . ! -regex '.*/\.hg.*' -a -type f
7 find . -name .hg -prune -o -type f -print
8 hg up -C
8 hg up -C
9 }
9 }
10
10
General Comments 0
You need to be logged in to leave comments. Login now