add build and test targets
This commit is contained in:
parent
489e9b4593
commit
6962dddecd
4
Makefile
4
Makefile
|
@ -17,7 +17,7 @@ deploy: build test upload pre-deploy pre-local pull start post-local post-deploy
|
|||
build:
|
||||
ifneq (,$(wildcard build.sh))
|
||||
@- echo "\n### running build script"
|
||||
./build.sh
|
||||
@ ./build.sh
|
||||
else
|
||||
@- echo "\n### no build script found"
|
||||
endif
|
||||
|
@ -25,7 +25,7 @@ endif
|
|||
test:
|
||||
ifneq (,$(wildcard test.sh))
|
||||
@- echo "\n### running test script"
|
||||
./test.sh
|
||||
@ ./test.sh
|
||||
else
|
||||
@- echo "\n### no test script found"
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue