From 76a3a88cee4851fe6ab007eca4c7a3c9dc822bc4 Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Sun, 30 Nov 2025 19:50:26 -0700 Subject: [PATCH] bootstrap: fix template --- usr/local/share/bastille/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/share/bastille/bootstrap.sh b/usr/local/share/bastille/bootstrap.sh index cfdd94c7..4a1545d5 100644 --- a/usr/local/share/bastille/bootstrap.sh +++ b/usr/local/share/bastille/bootstrap.sh @@ -479,7 +479,7 @@ bootstrap_template() { if [ ! -f ${raw_template_dir}/Bastillefile ]; then # Extract template in project/template format - find "${raw_template_dir}" -type f -name Bastillefile | while read -r _file; do + find "${raw_template_dir}" -type f -name Bastillefile | while read -r file; do template_dir="$(dirname ${file})" project_dir="$(dirname ${template_dir})" template_name="$(basename ${template_dir})"