From b6ca4d944ed729fc4db86e149599680983c83f00 Mon Sep 17 00:00:00 2001 From: Elie CHARRA Date: Mon, 16 Dec 2024 12:47:36 +0100 Subject: [PATCH] fix: remove quotes in shell output (#13) quotes are also exportedin the vars values, that causes issues if you follow the guide. --- env.tftpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env.tftpl b/env.tftpl index ecce2fa..2803be3 100644 --- a/env.tftpl +++ b/env.tftpl @@ -1,3 +1,3 @@ %{ for key, value in env } -export ${key}="${value}" +export ${key}=${value} %{~ endfor }