Skip to content

Commit

Permalink
circleci: Avoid dashes in package version numbers
Browse files Browse the repository at this point in the history
This wouldn't trigger on the master branch on account of having the
version trunk.
  • Loading branch information
dridi committed Jun 21, 2024
1 parent cad8eeb commit 02c682b
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 @@ -83,7 +83,7 @@ jobs:
if grep 'AC_INIT.*trunk.*' ./configure.ac; then
sed -i -e "s/AC_INIT(\[\(.*\)\],\s*\[\(.*\)\],\s*\[\(.*\)\])/AC_INIT([\1],[$(date +%Y%m%d)],[\3])/" ./configure.ac
else
sed -i -e "s/AC_INIT(\[\(.*\)\],\s*\[\(.*\)\],\s*\[\(.*\)\])/AC_INIT([\1],[\2-$(date +%Y%m%d)],[\3])/" ./configure.ac
sed -i -e "s/AC_INIT(\[\(.*\)\],\s*\[\(.*\)\],\s*\[\(.*\)\])/AC_INIT([\1],[\2.$(date +%Y%m%d)],[\3])/" ./configure.ac
fi
./autogen.des
make dist -j 16
Expand Down

0 comments on commit 02c682b

Please sign in to comment.