fix: startup script blocking

This commit is contained in:
MystiPanda 2024-04-20 17:52:54 +08:00
parent deccff623a
commit 19ce53128b

View File

@ -304,7 +304,7 @@ pub fn startup_script() -> Result<()> {
shell = "powershell";
}
if path.ends_with(".bat") {
shell = "cmd";
shell = "powershell";
}
if shell.is_empty() {
return Err(anyhow::anyhow!("unsupported script: {path}"));