Skip to content

Commit 218d74d

Browse files
committed
use exit instead of return to avoid script error
1 parent 65b37b6 commit 218d74d

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)