Skip to content

Commit

Permalink
Debug exit 141 failure
Browse files Browse the repository at this point in the history
  • Loading branch information
KnVerey committed Mar 28, 2022
1 parent 3cecdc6 commit 458d484
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion releasing/compile-changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ fullTag=$2
changeLogFile="${3:-}"

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

commits=( $(git log "$prevTag".."$fullTag" \
Expand Down

0 comments on commit 458d484

Please sign in to comment.