Skip to content

Commit

Permalink
Build(devscripts): Fix prerelease
Browse files Browse the repository at this point in the history
Escape slash for `sed`.

[skip ci]
  • Loading branch information
phdru committed Feb 28, 2024
1 parent 382ebf1 commit ddab849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devscripts/prerelease
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if [ "$state" = alpha ]; then
elif [ "$state" = beta -o "$state" = 'release candidate' ]; then
trove_cls='4 - Beta'
elif [ "$state" = final -o "$state" = post ]; then
trove_cls='5 - Production/Stable'
trove_cls='5 - Production\/Stable'
else
echo "Error: unknown state $state" >&2
exit 1
Expand Down

0 comments on commit ddab849

Please sign in to comment.