diff --git a/electron-builder.config.cjs b/electron-builder.config.cjs index ed6f926fd..ad665fa7f 100644 --- a/electron-builder.config.cjs +++ b/electron-builder.config.cjs @@ -99,7 +99,7 @@ const config = { withFileTypes: true, }) .filter((f) => f.isFile() && f.name.startsWith("wavesrv")) - .forEach((f) => fs.chmodSync(path.resolve(f.parentPath ?? f.path, f.name), 0o755)); + .forEach((f) => fs.chmodSync(path.resolve(f.parentPath ?? f.path, f.name), 0o755)); // 0o755 corresponds to -rwxr-xr-x } }, };