test-renames.t: don't use "seq"

Seq is not a standard utility, and explicit loop should be more performant.
This commit is contained in:
Dmitrij D. Czarkoff 2016-01-14 13:33:35 +01:00
parent 401a99e1cf
commit 19936ed1b6

View File

@ -10,7 +10,7 @@ Test that rename detection works
$ git init -q gitrepo
$ cd gitrepo
$ for i in $(seq 1 10); do echo $i >> alpha; done
$ for i in 1 2 3 4 5 6 7 8 9 10; do echo $i >> alpha; done
$ git add alpha
$ fn_git_commit -malpha