Skip to content

Commit

Permalink
fix(ci): Fix corda:down causing failing when NO_CORDA=true
Browse files Browse the repository at this point in the history
Signed-off-by: Ben LeFevre <blefevre@users.noreply.github.com>
  • Loading branch information
blefevre authored and petermetz committed Mar 1, 2020
1 parent 28358d1 commit d981d59
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/core/tools/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,12 @@ function mainTask()
npm run fed:quorum:down
npm run fed:corda:down
npm run fed:fabric:down

# Corda down scripts don't exist unless Corda is built
if [ ! -v CI_NO_CORDA ]; then
npm run corda:down
fi

npm run quorum:api:down
npm run quorum:down
npm run fabric:down
Expand Down

0 comments on commit d981d59

Please sign in to comment.