Skip to content
Snippets Groups Projects
Commit 8fbb2678 authored by Augie Fackler's avatar Augie Fackler
Browse files

tests: remove {a..h} bashism from remotenames

I'm not bothering with a check-code test because this is a weird
construct that I didn't even know existed before it was breaking the
BSD build, and it also appears to fail if /bin/sh is dash like it is
on our Linux builder.

Differential Revision: https://phab.mercurial-scm.org/D1605
parent ad0de63e
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,10 @@
$ hg init server
$ cd server
$ for ch in {a..h}; do echo "foo" >> $ch; hg ci -Aqm "Added "$ch; done
$ for ch in a b c d e f g h; do
> echo "foo" >> $ch
> hg ci -Aqm "Added "$ch
> done
$ hg glog
@ 7:ec2426147f0e Added h
|
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment