From 2844ba997a71bff9b7a9c0e8d7dbfe11853909d5 Mon Sep 17 00:00:00 2001 From: savitaashture Date: Tue, 10 Sep 2024 20:20:18 +0530 Subject: [PATCH] Remove unwanted echo statement --- templates/load-scripts.tpl | 1 - 1 file changed, 1 deletion(-) diff --git a/templates/load-scripts.tpl b/templates/load-scripts.tpl index 1a01960..c7387bc 100644 --- a/templates/load-scripts.tpl +++ b/templates/load-scripts.tpl @@ -10,7 +10,6 @@ set -e {{- range $i, $prefix := index . 1 -}} {{- range $path, $content := $global.Files.Glob "scripts/*.sh" }} {{- $name := trimPrefix "scripts/" $path }} -echo "/scripts/{{ $name }}" {{- if or ( hasPrefix $prefix $name ) ( hasPrefix "common" $name ) }} printf '%s' "{{ $content | toString | b64enc }}" |base64 -d >"/scripts/{{ $name }}" {{- end }}