Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 51ff00a

Browse files
committed
build(test-all): fix error due to disabled brace expansion
1 parent 5e54104 commit 51ff00a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/private/test-all.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ node_modules/.bin/http-server -p 8000 &
2525
WEBSERVER_PID=$!
2626

2727
# Run the unit and e2e tests
28-
for i in {0..12}
28+
for i in $(seq 0 12)
2929
do
3030
git checkout -f step-$i
3131

3232
node_modules/karma/bin/karma start test/karma.conf.js --single-run
3333
node_modules/.bin/protractor test/protractor-conf.js
3434

35-
done
35+
done

0 commit comments

Comments
 (0)