Skip to content

Commit

Permalink
Merge pull request #2265 from xzyfer/fix/bootstrap
Browse files Browse the repository at this point in the history
Update test bootstrap script to use document environment vars
  • Loading branch information
xzyfer authored Dec 28, 2016
2 parents 15b45ad + 7fb001e commit 2a9f386
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions script/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

script/branding

if [ ! -d "sass-spec" ]; then
git clone https://github.com/sass/sass-spec.git
: ${SASS_SPEC_PATH:="sass-spec"}
: ${SASS_SASSC_PATH:="sassc" }

if [ ! -d $SASS_SPEC_PATH ]; then
git clone https://github.com/sass/sass-spec.git $SASS_SPEC_PATH
fi
if [ ! -d "sassc" ]; then
git clone https://github.com/sass/sassc.git
if [ ! -d $SASS_SASSC_PATH ]; then
git clone https://github.com/sass/sassc.git $SASS_SASSC_PATH
fi

0 comments on commit 2a9f386

Please sign in to comment.