From 1ff94d1035023e3dc8161e6238f18230a578ae2f Mon Sep 17 00:00:00 2001 From: dignow Date: Thu, 17 Aug 2023 09:51:43 +0800 Subject: [PATCH] fix, portable version, busy cursor last for a long time Signed-off-by: dignow --- libs/portable/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/portable/src/main.rs b/libs/portable/src/main.rs index 6a000f5a1..dc6f7bc84 100644 --- a/libs/portable/src/main.rs +++ b/libs/portable/src/main.rs @@ -54,7 +54,7 @@ fn execute(path: PathBuf, args: Vec) { .stdin(Stdio::inherit()) .stdout(Stdio::inherit()) .stderr(Stdio::inherit()) - .output() + .spawn() .ok(); }