[master] edd7b69f0 Fix up CCI config

Martin Blix Grydeland martin at varnish-software.com
Thu Sep 16 06:39:08 UTC 2021


commit edd7b69f0e8dc4736baa520faa929d315b05d06d
Author: Martin Blix Grydeland <martin at varnish-software.com>
Date:   Thu Sep 16 08:38:17 2021 +0200

    Fix up CCI config
    
    Forgot to pass -i for inplace sed run

diff --git a/.circleci/config.yml b/.circleci/config.yml
index b459dc3d1..1a32fef41 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -77,9 +77,9 @@ jobs:
                   touch .is_weekly
                   # If version is "trunk", override version to add date
                   if grep 'AC_INIT.*trunk.*' ./configure.ac; then
-                      sed -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 -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 --quiet
                   make dist -j 16


More information about the varnish-commit mailing list