Fixed typo that caused build system fail

This commit is contained in:
Dominika 2020-09-06 15:20:51 -04:00
parent 999117e8f2
commit 20fbcefed4
No known key found for this signature in database
GPG Key ID: B4A5A6DCA70F861F
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ BUILD_DIR=$HOME/kamiblue/build/libs/
JAR_DIR="$(ls "$BUILD_DIR" | grep "release")"
CHANGELOG_FULL="$(git log --format=%s $COMMIT_TRIM...$COMMIT_LAST | sed ':a;N;$!ba;s/\n/\\n- /g')"
# remove ' and " from changelog
CHANGELOG_FULL="$(echo CHANGELOG_FULL | sed "s/['\"]//g")"
# remove ' and " from changelog, as those chars do not work with discord webhooks
CHANGELOG_FULL="$(echo $CHANGELOG_FULL | sed "s/['\"]//g")"
# delete the release in case it exists
git tag -d $CUR_VER-$COMMIT_TRIM