From c3073340a0cdc8621607a04d223d1f217b01379c Mon Sep 17 00:00:00 2001 From: Serenity <1360359624@qq.com> Date: Sun, 26 May 2024 11:52:52 +0800 Subject: [PATCH] =?UTF-8?q?ref:=20=E6=9C=8D=E5=8A=A1=E5=B7=A5=E4=BD=9C?= =?UTF-8?q?=E7=9B=AE=E5=BD=95=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/util/service.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/service.rs b/src/util/service.rs index c92e155..fa463e2 100644 --- a/src/util/service.rs +++ b/src/util/service.rs @@ -44,7 +44,7 @@ impl Service { args: vec![OsString::from("--run")], contents: None, // 特定于系统的服务内容的可选字符串。 username: None, // 可选字符串,供备用用户运行服务。 - working_directory: None, // 服务进程的工作目录的可选字符串。 + working_directory: Option::from(self.path.parent().unwrap().to_path_buf()), // 服务进程的工作目录的可选字符串。 environment: None, // 用于提供服务进程的环境变量的可选列表。 }).expect("Failed to install"); info!("{:}服务安装完成。",self.name.clone().to_string())