remove debug log of ls output on linux
Some checks failed
Playwright Tests / test (push) Has been cancelled

This commit is contained in:
parent 536e15a039
commit 2352b6f782
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

@ -33,7 +33,7 @@ export function getExe(): string {
];
for (let i = 0; i < possibleDirs.length; i++) {
if (existsSync(possibleDirs[i])) {
console.log(execSync(`ls -l ${possibleDirs[i]}`).toString());
// console.log(execSync(`ls -l ${possibleDirs[i]}`).toString());
return path.join(possibleDirs[i], "resources", "app.asar");
}
}