fix: add missing args to windows tauri cli spawn (#8084)

This commit is contained in:
Patrick Schiel
2026-01-13 03:38:01 +01:00
committed by GitHub
parent 5d37e58d34
commit eb2044989e

View File

@@ -155,6 +155,7 @@ pub fn create_command(app: &tauri::AppHandle, args: &str) -> Command {
.shell()
.sidecar("opencode-cli")
.unwrap()
.args(args.split_whitespace())
.env("OPENCODE_EXPERIMENTAL_ICON_DISCOVERY", "true")
.env("OPENCODE_CLIENT", "desktop")
.env("XDG_STATE_HOME", &state_dir);