From 2a6add4924bc0327ad6250e742729c051b484aa3 Mon Sep 17 00:00:00 2001 From: Ivan Hernandez Date: Fri, 21 May 2021 10:20:31 +0200 Subject: [PATCH] yarn run lint --fix && yarn build --- src/model/docker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model/docker.ts b/src/model/docker.ts index 8df85138..d0f8915f 100644 --- a/src/model/docker.ts +++ b/src/model/docker.ts @@ -85,7 +85,7 @@ class Docker { --volume "${runnerTempPath}/_github_home":"/root" \ --volume "${runnerTempPath}/_github_workflow":"/github/workflow" \ --volume "${workspace}":"/github/workspace" \ - ${sshAgent ? '--volume ' + sshAgent + ':/ssh-agent' : ''} \ + ${sshAgent ? `--volume ${sshAgent}:/ssh-agent` : ''} \ ${sshAgent ? '--volume /home/runner/.ssh/known_hosts:/root/.ssh/known_hosts:ro' : ''} \ ${image}`;