From bbd53d06be71d8435acfaa142f55c7d3e4d12da0 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sun, 28 Jan 2024 00:03:39 -1000 Subject: [PATCH] ;just:relprep: fixes --- Justfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 2aad778a3..bfe2cfa71 100644 --- a/Justfile +++ b/Justfile @@ -879,11 +879,12 @@ relfiles: # Prepare to release today, creating/switching to release branch, updating versions, dates, manuals, changelogs etc. relprep VER: #!/usr/bin/env bash + set -euo pipefail [[ -z {{ VER }} ]] && usage BRANCH=$(just _versionReleaseBranch {{ VER }}) COMMIT="-c" echo "Switching to $BRANCH, auto-creating it if needed..." - _gitSwitchAutoCreate "$BRANCH" + just _gitSwitchAutoCreate "$BRANCH" echo "Bumping all version strings to {{ VER }} ..." ./Shake setversion {{ VER }} $COMMIT echo "Updating all command help texts for embedding..."