Skip to content

Commit 73ad673

Browse files
authored
Merge pull request #5719 from plotly/exit-dont-return
use exit instead of return to avoid script error
2 parents 2799810 + 218d74d commit 73ad673

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
npm run docker -- setup
9494
- run:
9595
name: Run image tests (part A)
96-
command: ./.circleci/test.sh stable-image || { tar -cvf build/baselines.tar build/test_images/ ; return 1; } ; find build -maxdepth 1 -type f -delete
96+
command: ./.circleci/test.sh stable-image || { tar -cvf build/baselines.tar build/test_images/ ; exit 1; } ; find build -maxdepth 1 -type f -delete
9797
- store_artifacts:
9898
path: build
9999
destination: /

0 commit comments

Comments
 (0)