From a64e4a6333e503b595ebd01afa94c43ff9543247 Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Sun, 30 Nov 2025 20:06:14 -0700 Subject: [PATCH] bootstrap: exit after template bootstrap --- usr/local/share/bastille/bootstrap.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr/local/share/bastille/bootstrap.sh b/usr/local/share/bastille/bootstrap.sh index 4a1545d5..5b55fb08 100644 --- a/usr/local/share/bastille/bootstrap.sh +++ b/usr/local/share/bastille/bootstrap.sh @@ -640,6 +640,7 @@ case "${RELEASE}" in BASTILLE_TEMPLATE_USER=$(echo "${1}" | awk -F / '{ print $4 }') BASTILLE_TEMPLATE_REPO=$(echo "${1}" | awk -F / '{ print $5 }') bootstrap_template + exit 0 ;; git@*:*/*) BASTILLE_TEMPLATE_URL=${1} @@ -647,6 +648,7 @@ case "${RELEASE}" in BASTILLE_TEMPLATE_USER=$(echo "${git_repository}" | awk -F / '{ print $1 }') BASTILLE_TEMPLATE_REPO=$(echo "${git_repository}" | awk -F / '{ print $2 }') bootstrap_template + exit 0 ;; ubuntu_bionic|bionic|ubuntu-bionic) PLATFORM_OS="Linux/Ubuntu"