From 33754d87f87fcbde6d425ab3884c79b707658e29 Mon Sep 17 00:00:00 2001 From: SebClem Date: Sat, 22 Apr 2023 12:10:20 +0200 Subject: [PATCH] Fix sed command --- entrypoint | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entrypoint b/entrypoint index 65ef3a2..7d92f87 100755 --- a/entrypoint +++ b/entrypoint @@ -39,7 +39,8 @@ if [ -n "$PLUGIN_VAULT_TOKEN" ]; then echo "$PLUGIN_VAULT_TOKEN" > credentials/ci_vault_token args+=("--vault-password-file=credentials/ci_vault_token") echo "⚙️ Clean ansible.cfg" - run_command "sed -i '/vault_password_file.*/d' ./ansible.cfg" + echo "➡️ sed -i '/vault_password_file.*/d' ./ansible.cfg" + sed -i '/vault_password_file.*/d' ./ansible.cfg echo "" fi