mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-17 01:12:35 +00:00
fix: add trailing single quite to Docker --env arguments
This commit is contained in:
parent
0b2baab891
commit
cd791cb5c3
1 changed files with 2 additions and 2 deletions
|
|
@ -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(' ')}`;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue