Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-sass.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rwxr-xr-xtest/node_sass_compile_test.sh6
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 190f920b..9170e31a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,5 +15,5 @@ env:
global:
- VERBOSE=1
script:
- bundle exec rake && sh test/*.sh
+ bundle exec rake && bash test/*.sh
sudo: false
diff --git a/test/node_sass_compile_test.sh b/test/node_sass_compile_test.sh
index 6c8a3696..1ab6313d 100755
--- a/test/node_sass_compile_test.sh
+++ b/test/node_sass_compile_test.sh
@@ -1,8 +1,8 @@
-#!/bin/sh
+#!/bin/bash
# Test compilation with node-sass binary
mkdir -p tmp/node-sass
-node-sass assets/stylesheets/_bootstrap.scss -o tmp/node-sass/bootstrap.css && \
-node-sass assets/stylesheets/bootstrap/_theme.scss -o tmp/node-sass/bootstrap-theme.css || \
+node_modules/.bin/node-sass assets/stylesheets/_bootstrap.scss -o tmp/node-sass/bootstrap.css && \
+node_modules/.bin/node-sass assets/stylesheets/bootstrap/_theme.scss -o tmp/node-sass/bootstrap-theme.css || \
(echo "node-sass compilation failed" && exit 1)