From 60606e5ad077661e96278765689ab8c0e0e00bb8 Mon Sep 17 00:00:00 2001 From: Me No Dev Date: Tue, 3 Nov 2020 21:53:22 +0200 Subject: [PATCH] Update on-release.sh --- .github/scripts/on-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/on-release.sh b/.github/scripts/on-release.sh index e5e320099..489a67ed4 100755 --- a/.github/scripts/on-release.sh +++ b/.github/scripts/on-release.sh @@ -330,7 +330,7 @@ fi if [ ! -z "$COMMITS_SINCE_RELEASE" ] && [ "$COMMITS_SINCE_RELEASE" != "null" ]; then echo "Getting commits since $COMMITS_SINCE_RELEASE ..." commitFile=$OUTPUT_DIR/commits.txt - git -C "$GITHUB_WORKSPACE" log --oneline $COMMITS_SINCE_RELEASE.. > "$OUTPUT_DIR/commits.txt" + git -C "$GITHUB_WORKSPACE" log --oneline "$COMMITS_SINCE_RELEASE.." > "$OUTPUT_DIR/commits.txt" releaseNotes+=$'\r\n##### Commits\r\n' IFS=$'\n' for next in `cat $commitFile` -- GitLab