From cd791cb5c35d8248cf1a28c6b18e52658dad1c8f Mon Sep 17 00:00:00 2001 From: Jeroen de Bruijn Date: Sun, 3 May 2020 18:46:36 +0200 Subject: [PATCH] fix: add trailing single quite to Docker --env arguments --- src/renovate.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renovate.ts b/src/renovate.ts index 11218a7a..eb7eee38 100644 --- a/src/renovate.ts +++ b/src/renovate.ts @@ -14,8 +14,8 @@ class Renovate { runDockerContainer(): void { const commandArguments = [ '--rm', - `--env ${this.configurationFileEnv}='${this.configurationFile}`, - `--env ${this.tokenEnv}='${this.token}`, + `--env ${this.configurationFileEnv}='${this.configurationFile}'`, + `--env ${this.tokenEnv}='${this.token}'`, this.docker.image(), ]; const command = `docker run ${commandArguments.join(' ')}`;