Remove dependency on seq

seq is unfortunately not available on OSX. Brackets appear to be fully
shell- and platform-independent.
This commit is contained in:
Andrew Lorente
2011-10-20 13:47:19 -07:00
parent 99e4e9dcda
commit cb8a3a6121
2 changed files with 2 additions and 4 deletions

View File

@@ -199,7 +199,7 @@ test_git_status_shortcuts_max_changes() {
# Add 5 untracked files
touch a b c d e
git_status=$(git_status_shortcuts | strip_colors)
for i in $(seq 1 5); do
for i in {1..5}; do
assertIncludes "$git_status" "\[$i\]" || return
done