Skip to content

Commit

Permalink
Updates sass package. Adds options to script to reliably catch errors
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Crean committed Jul 25, 2018
1 parent 1ef97fc commit 5426b94
Show file tree
Hide file tree
Showing 3 changed files with 189 additions and 126 deletions.
11 changes: 11 additions & 0 deletions ci-support/circleci_mac.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@

# Exit script if you try to use an uninitialized variable.
set -o nounset

# Exit script if a statement returns a non-true return value.
set -o errexit

# Use the error status of the first failure, rather than that of the last item in a pipeline.
set -o pipefail

export UVCDAT_ANONYMOUS_LOG=False
export UVCDAT_SETUP_PATH=${HOME}
export PATH=${HOME}/miniconda/bin:${PATH}

cd frontend
npm install
cd ..
Expand Down

0 comments on commit 5426b94

Please sign in to comment.