From ff94fcdba3a0d1cef922bd5ffb48f08e5e8ebdae Mon Sep 17 00:00:00 2001 From: SebClem Date: Fri, 21 Apr 2023 20:57:50 +0200 Subject: [PATCH] Try to fix vault password --- entrypoint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint b/entrypoint index 479759c..2e10417 100755 --- a/entrypoint +++ b/entrypoint @@ -37,7 +37,7 @@ if [ -n "$PLUGIN_VAULT_TOKEN" ]; then echo "💼 Adding vault token to 'credentials/ci_vault_token'" run_command "mkdir credentials" echo "$PLUGIN_VAULT_TOKEN" > credentials/ci_vault_token - args+=("--vault-password-file" "credentials/ci_vault_token") + args+=("--vault-password-file=credentials/ci_vault_token") echo "" fi