Skip to content

Commit

Permalink
Merge pull request #4551 from KnVerey/pipe_fail
Browse files Browse the repository at this point in the history
Debug exit 141 failure
  • Loading branch information
natasha41575 authored Mar 28, 2022
2 parents 3cecdc6 + 458d484 commit 8e46ef5
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 8e46ef5

Please sign in to comment.