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 95df50d commit 2f204d3Copy full SHA for 2f204d3
dist-lib.sh
@@ -44,7 +44,8 @@ function assembly-version {
44
local RELEASE_PATTERN="^[0-9]+(\.[0-9]+){2,3}$"
45
local NIGHTLY_PATTERN="^[0-9]+(\.[0-9]+){2,3}$"
46
if [[ $1 =~ $RELEASE_PATTERN ]] ; then
47
- ASSEMBLY_VSN=$RABBIT_VSN.0
+ # AssemblyVersion cannot contain arbitrary strings
48
+ ASSEMBLY_VSN=$(echo $RABBIT_VSN | sed -e "s/milestone/80/g" -e "s/rc/90/g")
49
elif [[ $1 =~ $NIGHTLY_PATTERN ]] ; then
50
ASSEMBLY_VSN=$RABBIT_VSN
51
else
0 commit comments