From 1be0afe2ffa0b6b9b519a2f68eaa19ae998adf72 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sat, 7 Dec 2024 14:18:53 -1000 Subject: [PATCH] ;tools: just relprep: simplify --- Justfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Justfile b/Justfile index f6981fdd8..b2bd9c8ff 100644 --- a/Justfile +++ b/Justfile @@ -1111,17 +1111,16 @@ relprep VER: set -euo pipefail [[ -z {{ VER }} ]] && usage BRANCH=$(just _versionReleaseBranch {{ VER }}) - COMMIT="-c" echo "Switching to $BRANCH, auto-creating it if needed..." just _gitSwitchAutoCreate "$BRANCH" echo "Bumping all version strings to {{ VER }} ..." - ./Shake setversion {{ VER }} $COMMIT + ./Shake setversion {{ VER }} -c echo "Updating all command help texts for embedding..." - ./Shake cmddocs $COMMIT + ./Shake cmddocs -c echo "Updating all dates in man pages..." ./Shake mandates echo "Generating all the manuals in all formats...." - ./Shake manuals $COMMIT + ./Shake manuals -c # echo "Updating CHANGES.md files with latest commits..." # ./Shake changelogs $COMMIT