Skip to content

Commit

Permalink
fix: add debug log (#915)
Browse files Browse the repository at this point in the history
  • Loading branch information
daiyam authored Nov 10, 2021
1 parent 23313d4 commit b0154c7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ do
echo "Uploading '${FILE}' at $( date "+%T" )"
gh release upload "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"

if ! (( $? )); then
EXIT_STATUS=$?
echo "exit: $EXIT_STATUS"

if ! (( $EXIT_STATUS )); then
for (( i=0; i<10; i++ ))
do
github-release delete --owner VSCodium --repo vscodium --tag "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
Expand Down

0 comments on commit b0154c7

Please sign in to comment.