From c216572e94192fa00ad8f70c310f1b3a2dc4c862 Mon Sep 17 00:00:00 2001 From: The_Spider Date: Fri, 1 Apr 2022 21:35:03 -0500 Subject: [PATCH] corrects formatting --- vars/declarativeFunctions.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/declarativeFunctions.groovy b/vars/declarativeFunctions.groovy index f5daf1d..a269aca 100644 --- a/vars/declarativeFunctions.groovy +++ b/vars/declarativeFunctions.groovy @@ -42,7 +42,7 @@ def createSecret (Map config) { ]) { sh """ set +x - printf '%s\n' \"" + config.secret + "\" | kubectl apply -f -" + printf '%s\n' "${config.secret}" | kubectl apply -f - """ } }