fix windows bug
This commit is contained in:
@@ -206,8 +206,12 @@ pub fn ensure_daemon(session: &str, headed: bool) -> Result<(), String> {
|
|||||||
{
|
{
|
||||||
use std::os::windows::process::CommandExt;
|
use std::os::windows::process::CommandExt;
|
||||||
|
|
||||||
let mut cmd = Command::new("node");
|
// On Windows, use cmd.exe to run node to ensure proper PATH resolution
|
||||||
cmd.arg(daemon_path)
|
// This handles cases where node.exe isn't directly in PATH but node.cmd is
|
||||||
|
let mut cmd = Command::new("cmd");
|
||||||
|
cmd.arg("/c")
|
||||||
|
.arg("node")
|
||||||
|
.arg(daemon_path)
|
||||||
.env("AGENT_BROWSER_DAEMON", "1")
|
.env("AGENT_BROWSER_DAEMON", "1")
|
||||||
.env("AGENT_BROWSER_SESSION", session);
|
.env("AGENT_BROWSER_SESSION", session);
|
||||||
|
|
||||||
|
|||||||
@@ -128,6 +128,15 @@ pub fn run_install(with_deps: bool) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
println!("\x1b[36mInstalling Chromium browser...\x1b[0m");
|
println!("\x1b[36mInstalling Chromium browser...\x1b[0m");
|
||||||
|
|
||||||
|
// On Windows, we need to use cmd.exe to run npx because npx is actually npx.cmd
|
||||||
|
// and Command::new() doesn't resolve .cmd files the way the shell does
|
||||||
|
#[cfg(windows)]
|
||||||
|
let status = Command::new("cmd")
|
||||||
|
.args(["/c", "npx", "playwright", "install", "chromium"])
|
||||||
|
.status();
|
||||||
|
|
||||||
|
#[cfg(not(windows))]
|
||||||
let status = Command::new("npx")
|
let status = Command::new("npx")
|
||||||
.args(["playwright", "install", "chromium"])
|
.args(["playwright", "install", "chromium"])
|
||||||
.status();
|
.status();
|
||||||
|
|||||||
Reference in New Issue
Block a user