Skip to content

Commit 383fb88

Browse files
authored
Merge pull request #19 from slavek-kucera/patch-1
Pass '-y' argument to apt-get
2 parents 41f2606 + f056bdf commit 383fb88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ async function main() {
2020
}
2121

2222
async function runCommandWithXvfb(command, directory, options) {
23-
await exec.exec("sudo apt-get install xvfb");
23+
await exec.exec("sudo apt-get install -y xvfb");
2424
const optionsArgument = options ? `-s "${options}"` : '';
2525
command = `xvfb-run --auto-servernum ${optionsArgument} ${command}`;
2626

0 commit comments

Comments
 (0)