Skip to content

Commit b7d8b04

Browse files
committed
Extract verbose and use xvfb-run
1 parent 88c851b commit b7d8b04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/compass-smoke-tests/src/installers/linux-tar.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ export function installLinuxTar({
1111
const appFilename = `${appName}-linux-x64`;
1212
const appPath = path.resolve(destinationPath, appFilename);
1313

14-
execute('tar', ['-xzf', filepath, '-C', destinationPath]);
14+
execute('tar', ['-xzvf', filepath, '-C', destinationPath]);
1515

1616
// Check that the executable will run without being quarantined or similar
17-
execute(path.resolve(appPath, appName), ['--version']);
17+
execute('xvfb-run', [path.resolve(appPath, appName), '--version']);
1818

1919
return {
2020
appPath,

0 commit comments

Comments
 (0)