comment, secret example, set -x

This commit is contained in:
Zsolt Alföldi
2026-03-01 00:28:55 +01:00
parent 45ae4e0de6
commit c34435b206
3 changed files with 14 additions and 4 deletions

View File

@@ -41,10 +41,8 @@ error() {
exit 1
}
function envsubst_in_place() {
set -x
local _filename=$1
envsubst "\$TARGET_USER" <"$_filename" >$_filename.tmp && mv $_filename.tmp $_filename
set +x
}
while [[ $# -gt 0 ]]; do