Skip to content

Commit 9e2f5cc

Browse files
authored
Chore: Fix signing step exit code (#220)
1 parent d4742db commit 9e2f5cc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,12 @@ jobs:
9393
else
9494
/tmp/grabpl build-plugin-manifest ./dist/plugin-<< parameters.arch >>
9595
fi
96+
EXIT_CODE=$?
9697
9798
if [ << parameters.skip_signing_errors >> = true ]; then
9899
exit 0
99100
else
100-
exit $?
101+
exit $EXIT_CODE
101102
fi
102103
- run:
103104
name: Archive

0 commit comments

Comments
 (0)