[7.4] 594f01645 Fix .circleci/config.yml to match changes in configure.ac

Dridi Boukelmoune dridi.boukelmoune at gmail.com
Fri Jun 21 13:42:13 UTC 2024


commit 594f0164544f00cf0e6b9146ac4a47a1e76d6da1
Author: Simon Stridsberg <simon.stridsberg at varnish-software.com>
Date:   Fri Oct 6 09:01:41 2023 +0200

    Fix .circleci/config.yml to match changes in configure.ac

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 937a79b93..88df75a90 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -82,9 +82,9 @@ jobs:
                   touch .is_weekly
                   # If version is "trunk", override version to add date
                   if grep 'AC_INIT.*trunk.*' ./configure.ac; then
-                      sed -i -e "s/AC_INIT(\[\(.*\)\], \[\(.*\)\], \[\(.*\)\])/AC_INIT([\1], [$(date +%Y%m%d)], [\3])/" ./configure.ac
+                      sed -i -e "s/AC_INIT(\[\(.*\)\],\[\(.*\)\],\[\(.*\)\])/AC_INIT([\1],[$(date +%Y%m%d)],[\3])/" ./configure.ac
                   else
-                      sed -i -e "s/AC_INIT(\[\(.*\)\], \[\(.*\)\], \[\(.*\)\])/AC_INIT([\1], [\2-$(date +%Y%m%d)], [\3])/" ./configure.ac
+                      sed -i -e "s/AC_INIT(\[\(.*\)\],\[\(.*\)\],\[\(.*\)\])/AC_INIT([\1],[\2-$(date +%Y%m%d)],[\3])/" ./configure.ac
                   fi
                   ./autogen.des
                   make dist -j 16


More information about the varnish-commit mailing list