Define shell as bash

This commit is contained in:
Raul Ochoa 2016-01-22 12:22:54 +01:00
parent 99e7f1cdf2
commit 9ef8179cb3

View File

@ -1,3 +1,5 @@
SHELL=/bin/bash
all: all:
npm install npm install
@ -17,15 +19,15 @@ TEST_SUITE_ACCEPTANCE := $(shell find test/acceptance -name "*.js")
test: test:
@echo "***tests***" @echo "***tests***"
test/run_tests.sh ${RUNTESTFLAGS} $(TEST_SUITE) @$(SHELL) test/run_tests.sh ${RUNTESTFLAGS} $(TEST_SUITE)
test-unit: test-unit:
@echo "***unit tests***" @echo "***unit tests***"
test/run_tests.sh ${RUNTESTFLAGS} $(TEST_SUITE_UNIT) @$(SHELL) test/run_tests.sh ${RUNTESTFLAGS} $(TEST_SUITE_UNIT)
test-acceptance: test-acceptance:
@echo "***acceptance tests***" @echo "***acceptance tests***"
test/run_tests.sh ${RUNTESTFLAGS} $(TEST_SUITE_ACCEPTANCE) @$(SHELL) test/run_tests.sh ${RUNTESTFLAGS} $(TEST_SUITE_ACCEPTANCE)
test-all: jshint test test-all: jshint test