aboutsummaryrefslogtreecommitdiffstats
path: root/image-builder/build-sbo-testbuild.sh
diff options
context:
space:
mode:
Diffstat (limited to 'image-builder/build-sbo-testbuild.sh')
-rwxr-xr-ximage-builder/build-sbo-testbuild.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/image-builder/build-sbo-testbuild.sh b/image-builder/build-sbo-testbuild.sh
index a246b79..0d1e07b 100755
--- a/image-builder/build-sbo-testbuild.sh
+++ b/image-builder/build-sbo-testbuild.sh
@@ -15,6 +15,7 @@
# Adds sbopkg + sbo-maintainer-tools from prebuilt .txz in PKGDIR.
# Rebuilds when the full image OR the .txz set changes.
set -euo pipefail
+PROJECT_VERSION="1.0.0" # bump via sed across all scripts; see CLAUDE.md Releases
HERE="$(cd "$(dirname "$0")" && pwd)"
source "${HERE}/config"
LOG_TAG=testbuild
@@ -29,6 +30,7 @@ FORCE=false
OPT_VERSION=""
while [[ $# -gt 0 ]]; do
case "$1" in
+ -V) echo "build-sbo-testbuild.sh $PROJECT_VERSION"; exit 0 ;;
--version) OPT_VERSION="$2"; shift 2 ;;
--force) FORCE=true; shift ;;
*) _err "unknown argument: $1" ;;