equal
deleted
inserted
replaced
54 |
54 |
55 echo "# check names for repositories (clashes with URL schemes, special chars)" |
55 echo "# check names for repositories (clashes with URL schemes, special chars)" |
56 for i in bundle file hg http https old-http ssh static-http " " "with space"; do |
56 for i in bundle file hg http https old-http ssh static-http " " "with space"; do |
57 echo "# hg init \"$i\"" |
57 echo "# hg init \"$i\"" |
58 hg init "$i" |
58 hg init "$i" |
59 test -d "$i" -a -d "$i/.hg" -a -d "$i/.hg/data" && echo "ok" || echo "failed" |
59 test -d "$i" -a -d "$i/.hg" && echo "ok" || echo "failed" |
60 done |
60 done |
61 |
61 |