We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cecdc6 commit 458d484Copy full SHA for 458d484
releasing/compile-changelog.sh
@@ -29,7 +29,8 @@ fullTag=$2
29
changeLogFile="${3:-}"
30
31
# Find previous tag that matches the tags module
32
-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")
33
+prevTag=$(echo "$allTags" | head -n 1)
34
echo "Compiling $module changes from $prevTag to $fullTag"
35
36
commits=( $(git log "$prevTag".."$fullTag" \
0 commit comments