mirror of
https://github.com/jimeh/stub.sh.git
synced 2026-02-19 05:36:39 +00:00
13 lines
236 B
Makefile
13 lines
236 B
Makefile
test: prepare
|
|
./test.sh
|
|
|
|
prepare:
|
|
test -f "test/assert.sh" || ( \
|
|
echo "fetching assert.sh..." && \
|
|
curl -s -L -o test/assert.sh \
|
|
https://raw.github.com/lehmannro/assert.sh/v1.0.2/assert.sh \
|
|
)
|
|
|
|
.SILENT:
|
|
.PHONY: test prepare
|