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

Commit ff60356

Browse files
committed
debugging travis
1 parent a87a63a commit ff60356

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

backend/integration/Makefile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ install:
55
done;
66

77
test:
8-
browserify -t babelify is-travis.js attach-0.11.js|tape-run
9-
browserify -t babelify is-travis.js attach-0.12.js|tape-run
10-
browserify -t babelify is-travis.js attach-0.13.js|tape-run
11-
browserify -t babelify is-travis.js attach-0.14.js|tape-run
8+
for source in attach-*; do\
9+
browserify -t babelify is-travis.js $$source > tmp.js;\
10+
echo "Built $$source";\
11+
cat tmp.js | tape-run;\
12+
echo "Ran $$source";\
13+
done;
14+
rm tmp.js
1215

0 commit comments

Comments
 (0)