Files
stub.sh/Makefile
Jim Myhrberg 911b34cf69 Don't include assert.sh in the git repo itself
Instead, assert.sh is now downloaded if needed when you run make test.
2014-03-16 00:42:03 +00:00

13 lines
228 B
Makefile

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:
.PHONY: test