Don't include assert.sh in the git repo itself

Instead, assert.sh is now downloaded if needed when you run make test.
This commit is contained in:
2014-03-16 00:42:03 +00:00
parent 4cf9f6e944
commit 911b34cf69
3 changed files with 9 additions and 140 deletions

View File

@@ -1,4 +1,11 @@
test:
prepare:
test -f "test/assert.sh" || ( \
echo "fetching assert.sh..." && \
curl -s -L -o test/assert.sh \
https://raw.github.com/lehmannro/assert.sh/master/assert.sh \
)
test: prepare
./test.sh
.SILENT: