浏览代码

fix: adjsut open cmd error

GyDi 3 年之前
父节点
当前提交
2d1780b1cf
共有 1 个文件被更改,包括 8 次插入6 次删除
  1. 8 6
      src-tauri/src/cmds.rs

+ 8 - 6
src-tauri/src/cmds.rs

@@ -348,24 +348,26 @@ fn open_path_cmd(path: PathBuf, err_str: &str) -> Result<(), String> {
   match result {
     Ok(child) => match child.wait_with_output() {
       Ok(out) => {
+        // 退出码不为0 不一定没有调用成功
+        // 因此仅做warn log且不返回错误
         if let Some(code) = out.status.code() {
           if code != 0 {
-            log::error!(
-              "failed to open path {:?} for {} (code {code})",
-              &path,
+            log::warn!("failed to open {:?} (code {})", &path, code);
+            log::warn!(
+              "open cmd stdout: {}, stderr: {}",
+              String::from_utf8_lossy(&out.stdout),
               String::from_utf8_lossy(&out.stderr),
             );
-            return Err(err_str.into());
           }
         }
       }
       Err(err) => {
-        log::error!("failed to open path {:?} for {err}", &path);
+        log::error!("failed to open {:?} for {err}", &path);
         return Err(err_str.into());
       }
     },
     Err(err) => {
-      log::error!("failed to open path {:?} for {err}", &path);
+      log::error!("failed to open {:?} for {err}", &path);
       return Err(err_str.into());
     }
   }