@intuned/runtime-dev 1.3.6-brave.4 → 1.3.6-brave.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -295,8 +295,9 @@ async function getExecutablePath() {
|
|
|
295
295
|
if (process.env.BROWSER_TYPE === "brave") {
|
|
296
296
|
console.log("Using Brave browser");
|
|
297
297
|
const {
|
|
298
|
-
stdout
|
|
298
|
+
stdout
|
|
299
299
|
} = await execAsync("which brave-browser-stable");
|
|
300
|
+
const bravePath = stdout.trim();
|
|
300
301
|
console.log("Brave path:", bravePath);
|
|
301
302
|
return bravePath ?? undefined;
|
|
302
303
|
}
|