From 8a04c76744df22dd009dccb58f37d6a8347878b3 Mon Sep 17 00:00:00 2001 From: Dustin Lyons Date: Sat, 30 Dec 2023 11:44:45 -0600 Subject: [PATCH] Fix spacing --- templates/starter-with-secrets/apps/aarch64-darwin/apply | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/starter-with-secrets/apps/aarch64-darwin/apply b/templates/starter-with-secrets/apps/aarch64-darwin/apply index f1212ece..c3d602a8 100755 --- a/templates/starter-with-secrets/apps/aarch64-darwin/apply +++ b/templates/starter-with-secrets/apps/aarch64-darwin/apply @@ -39,6 +39,7 @@ insert_secrets_output() { awk -v pat="$pattern" -v insert="$insert_text" ' $0 ~ pat { sub(/} @inputs:/, ", " insert "} @inputs:"); # Replace the closing brace with the insert text followed by the brace + gsub(/ ,/, ","); # Correct any spaces before commas print next }