mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-16 17:02:36 +00:00
feat: enable tty to docker run
This commit is contained in:
parent
6856febbe5
commit
9a16cea083
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