[master] 3110d6f41 Fix .circleci/config.yml to match changes in configure.ac

Nils Goroll nils.goroll at uplex.de
Fri Oct 6 07:32:06 UTC 2023


commit 3110d6f41a45eeba9f4d2be6314b0684732d4428
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 1b3dbce4e..5551e8dd7 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