Skip to content

Commit

Permalink
Fix uploading to WoWI with a manual changelog causing the build to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
nebularg committed May 10, 2021
1 parent f733768 commit 6abc30a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2388,7 +2388,9 @@ if [ -z "$skip_zipfile" ]; then
case $result in
202)
echo "Success!"
[ -f "$wowi_changelog" ] && rm -f "$wowi_changelog" 2>/dev/null
if [ -f "$wowi_changelog" ]; then
rm -f "$wowi_changelog" 2>/dev/null
fi
;;
401)
echo "Error! No addon for id \"$addonid\" found or you do not have permission to upload files."
Expand Down

0 comments on commit 6abc30a

Please sign in to comment.