Skip to content
Snippets Groups Projects
Commit bcf3d04d authored by Dmitrij D. Czarkoff's avatar Dmitrij D. Czarkoff
Browse files

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

Seq is not a standard utility, and explicit loop should be more performant.
parent 296349f4
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@
$ 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
......
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