From fa32b82adde140f3360a2f0171db0204c6eb7b4f Mon Sep 17 00:00:00 2001 From: purple Date: Tue, 30 May 2023 21:00:46 +0200 Subject: [PATCH] Placeholders are now recursive. --- blueprint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprint.sh b/blueprint.sh index d39e2c5..cf2e198 100644 --- a/blueprint.sh +++ b/blueprint.sh @@ -179,7 +179,7 @@ if [[ ( $2 == "-i" ) || ( $2 == "-install" ) ]]; then SKIPAZPLACEHOLDERS=false; fi; - for f in $DIR; do + for f in $(find . -type f -print); do sed -i "s~^#version#^~$version~g" $f; sed -i "s~^#author#^~$author~g" $f; sed -i "s~^#identifier#^~$identifier~g" $f;