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(' ')}`;