From: Willy Tarreau Date: Wed, 10 Jul 2024 13:31:26 +0000 (+0200) Subject: SCRIPTS: create-release: no more need to skip architecture.txt X-Git-Tag: v3.1-dev3~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d96b9f42492db359b1967c9f11c133a87eaaa5cb;p=thirdparty%2Fhaproxy.git SCRIPTS: create-release: no more need to skip architecture.txt Now that it's gone we won't stumble upon it by accident anymore. --- diff --git a/scripts/create-release b/scripts/create-release index b8a867c1f0..8d050b6959 100755 --- a/scripts/create-release +++ b/scripts/create-release @@ -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:" \