mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-15 08:22:35 +00:00
feat: enable tty for docker run (#974)
Some checks are pending
Build / prepare (push) Waiting to run
Build / commitlint (push) Waiting to run
Build / lint (push) Blocked by required conditions
Build / e2e (example/renovate-config.js) (push) Blocked by required conditions
Build / e2e (example/renovate-config.json) (push) Blocked by required conditions
Build / release (push) Blocked by required conditions
Some checks are pending
Build / prepare (push) Waiting to run
Build / commitlint (push) Waiting to run
Build / lint (push) Blocked by required conditions
Build / e2e (example/renovate-config.js) (push) Blocked by required conditions
Build / e2e (example/renovate-config.json) (push) Blocked by required conditions
Build / release (push) Blocked by required conditions
feat: enable tty to docker run
This commit is contained in:
parent
6856febbe5
commit
7f974c0f8a
1 changed files with 1 additions and 1 deletions
|
|
@ -76,7 +76,7 @@ export class Renovate {
|
||||||
dockerArguments.push(dockerCmd);
|
dockerArguments.push(dockerCmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
const command = `docker run ${dockerArguments.join(' ')}`;
|
const command = `docker run -t ${dockerArguments.join(' ')}`;
|
||||||
|
|
||||||
const code = await exec(command);
|
const code = await exec(command);
|
||||||
if (code !== 0) {
|
if (code !== 0) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue