Merge pull request #4551 from KnVerey/pipe_fail

Debug exit 141 failure
This commit is contained in:
Natasha Sarkar
2022-03-28 15:46:23 -07:00
committed by GitHub

View File

@@ -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" \