Skip to content

Commit

Permalink
Fix function name for consistency
Browse files Browse the repository at this point in the history
Co-authored-by: Elliot Winkler <[email protected]>
  • Loading branch information
MajorLift and mcmire committed Nov 1, 2023
1 parent f754b2a commit 178dda7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/migrate-tags.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ get-version-commit-pairs() {
done <<<"$(get-version-subject-pairs)"
}

prepend-tag-name() {
get-commit-tagname-pairs() {
local tag_name
while IFS=$'\t' read -r version commit; do
if semverLT "$version" "$version_before_package_rename" || semverEQ "$version" "$version_before_package_rename"; then
Expand All @@ -137,4 +137,4 @@ while IFS=$'\t' read -r commit tag_name; do
git tag "$tag_name" "$commit"
git push "$remote" "$tag_name"
fi
done <<<"$(prepend-tag-name)"
done <<<"$(get-commit-tagname-pairs)"

0 comments on commit 178dda7

Please sign in to comment.