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

node_sass_compile_test.sh « test - github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df6314a7b8737c8420ea4fe5bfc1adab306e068b (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

# Test compilation with node-sass binary

mkdir -p tmp/node-sass
node-sass assets/stylesheets/bootstrap -o tmp/node-sass/bootstrap.css && \
node-sass assets/stylesheets/bootstrap/theme -o tmp/node-sass/bootstrap-theme.css || \
(echo "node-sass compilation failed" && exit 1)