Skip to content

Commit

Permalink
Reverts path change. Fix bash syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Crean committed Jul 25, 2018
1 parent b867388 commit 8e9d2b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci-support/circleci_mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -o errexit
set -o pipefail

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

cd frontend
npm install
Expand All @@ -19,9 +19,9 @@ cd frontend
npm run coverage
RESULT=$?
npm run coveralls
RESULT=$RESULT + $?
RESULT=$(($RESULT + $?))
cd ..
echo "test commands exit result:",$RESULT
echo "test commands exit result: $RESULT"
if [ $RESULT -eq 0 -a $CIRCLE_BRANCH == "master" ]; then conda install -n root conda-build anaconda-client ; fi
if [ $RESULT -eq 0 -a $CIRCLE_BRANCH == "master" ]; then bash ./ci-support/conda_upload.sh ; fi
exit $RESULT
Expand Down

0 comments on commit 8e9d2b9

Please sign in to comment.