Skip to content

Commit 458d484

Browse files
committed
Debug exit 141 failure
1 parent 3cecdc6 commit 458d484

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

releasing/compile-changelog.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ fullTag=$2
2929
changeLogFile="${3:-}"
3030

3131
# Find previous tag that matches the tags module
32-
prevTag=$(git tag -l "$module*" --sort=-version:refname --no-contains="$fullTag" | head -n 1)
32+
allTags=$(git tag -l "$module*" --sort=-version:refname --no-contains="$fullTag")
33+
prevTag=$(echo "$allTags" | head -n 1)
3334
echo "Compiling $module changes from $prevTag to $fullTag"
3435

3536
commits=( $(git log "$prevTag".."$fullTag" \

0 commit comments

Comments
 (0)