From 11ab255c5eb711f6c3ad1ee2512ae6498cf3bfbe Mon Sep 17 00:00:00 2001 From: Sven Marcus <s.marcus@outlook.de> Date: Fri, 23 Oct 2020 17:53:57 +0200 Subject: [PATCH] Remove quoation marks from ssh-agent command --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 00de1b39e..bf481b29d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -71,7 +71,7 @@ deploy_to_phoenix: needs: ["build"] before_script: - - eval "$(ssh-agent -s)" + - eval $(ssh-agent -s) - echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - - mkdir -p ~/.ssh - chmod 700 ~/.ssh -- GitLab