Skip to content

Commit

Permalink
fix: ignore beta
Browse files Browse the repository at this point in the history
  • Loading branch information
wdconinc authored Nov 1, 2023
1 parent ff1ff9a commit e24f723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/generate_new_version_issue.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package_list=$(spack tags eic)
for p in ${package_list}; do
v=$(spack versions --new $p)
# ignore pre and rc versions (for all packages)
v=$(echo $v | sed 's/\S*\(rc\|pre\|alpha\)\S*//g')
v=$(echo $v | sed 's/\S*\(rc\|pre\|alpha\|beta\)\S*//g')
# using `echo $v` instead of "$v" will handle v=" " correctly
if [[ ! -z `echo $v` ]]; then
echo "- [ ] \`$p\`: \`$v\` " >> gh-new-version.log
Expand Down

0 comments on commit e24f723

Please sign in to comment.