From ce68c47d2efbda5f40e338a9fd7e6ed33edc0037 Mon Sep 17 00:00:00 2001 From: SebClem Date: Wed, 15 Dec 2021 18:27:19 +0100 Subject: [PATCH] :ambulance: Fix privatekey --- entrypoint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint b/entrypoint index 9504bbb..73212a1 100755 --- a/entrypoint +++ b/entrypoint @@ -19,7 +19,7 @@ if [[ -z "$PLUGIN_PRIVATE_KEY" ]]; then else run_command "mkdir /root/.ssh" - echo \"$PLUGIN_PRIVATE_KEY\" > /root/.ssh/id_ed + echo "$PLUGIN_PRIVATE_KEY" > /root/.ssh/id_ed run_command chmod 400 /root/.ssh/id_ed fi