Skip to content

Commit ff3664a

Browse files
committed
Make CI rebuild mocha.js
Make won't rebuild when just checked out by CI because timestamps on source and mocha.js are the same. We could use a script to set the timestamps to the commit time, but it still wouldn't work if mocha.js were committed along with other changes that hadn't been built into it. Which shouldn't happen anyway -- but then again, the point of CI is to see what commits change, it's usually going to need to rebuild mocha.js if it's working right, so it's not going to hurt much to rebuild it every time even on the few times it doesn't need to.
1 parent eaca745 commit ff3664a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ language: node_js
1111
matrix:
1212
include:
1313
- node_js: '6'
14-
env: TARGET="lint test-node test-browser"
14+
env: TARGET="clean lint test-node test-browser"
1515
- node_js: '5'
1616
env: TARGET=test-node
1717
- node_js: '4'

0 commit comments

Comments
 (0)