Skip to content

Commit

Permalink
build: circleci: fixed regexp in order to match versions with underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Aloisio committed Apr 4, 2019
1 parent 065dbef commit 4658ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
if [ -z "${CIRCLE_TAG}" ]; then
echo "Nothing to do. Not a release."
else
EXT_TAG="$(echo -n $CIRCLE_TAG | sed -e "s/[0-9.]\\+\\-//g")"
EXT_TAG="$(echo -n $CIRCLE_TAG | sed -e "s/[0-9._]\\+\\-//g")"
sed -i "s/EXTENDNO=.*/EXTENDNO=${EXT_TAG}/g" release/src-rt/version.conf
fi
- run:
Expand Down

0 comments on commit 4658ce9

Please sign in to comment.