X Tutup
Skip to content

Commit e72305e

Browse files
committed
fix(build): do not run build/pubbuild.dart twice
Closes #3831
1 parent c2279dd commit e72305e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ci/test_e2e_dart.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function killServer () {
1616
# So we do this only for post-commit testing.
1717
# Pull requests test with Dartium and pub serve
1818
if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then
19-
./node_modules/.bin/gulp build/pubbuild.dart
19+
# WARNING: the build/pubbuild.dart task is assumed to have been run before, in test_server_dart.sh
2020
./node_modules/.bin/gulp serve.js.dart2js&
2121
serverPid=$!
2222
else

0 commit comments

Comments
 (0)
X Tutup