]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
SCRIPTS: create-release: no more need to skip architecture.txt
authorWilly Tarreau <w@1wt.eu>
Wed, 10 Jul 2024 13:31:26 +0000 (15:31 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 10 Jul 2024 13:38:45 +0000 (15:38 +0200)
Now that it's gone we won't stumble upon it by accident anymore.

scripts/create-release

index b8a867c1f00d19cde0502099a6d47b23ae49571b..8d050b695939c3a9572446692f845df92546060e 100755 (executable)
@@ -181,10 +181,9 @@ echo "Updating VERDATE ..."
 echo '$Format:%ci$' > VERDATE
 echo "$DATE" >> VERDATE
 
-# updating branch and date in all modified doc files except the outdated architecture.txt
+# updating branch and date in all modified doc files
 for file in doc/intro.txt doc/configuration.txt doc/management.txt $(git diff --name-only v${OLD}.. -- doc); do
        if [ ! -e "$file" ]; then continue; fi
-       if [ "$file" = doc/architecture.txt ]; then continue; fi
        echo "Updating $file ..."
        sed -e "1,10s:\(\sversion\s\).*:\1$BRANCH:" \
            -e "1,10s:\(\s\)\(20[0-9]\{2\}/[0-9]\{1,2\}/[0-9]\{1,2\}\):\1$DATE:" \