mirror of
https://github.com/chaijs/chai
synced 2024-11-15 00:07:11 +00:00
Make order of source files well-defined
This avoids crazy git diffs when building.
This commit is contained in:
parent
41f645dbb8
commit
0f64769906
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -1,7 +1,7 @@
|
|||
|
||||
TESTS = test/*.js
|
||||
REPORTER = spec
|
||||
SRC = $(shell find lib -name "*.js" -type f)
|
||||
SRC = $(shell find lib -name "*.js" -type f | sort)
|
||||
|
||||
all: chai.js
|
||||
|
||||
|
|
Loading…
Reference in a new issue