fix(wm): refer AHK_EXE

This commit is contained in:
Mitsuhiro Tanda
2023-07-06 19:13:56 +09:00
committed by جاد
parent 2675f747bb
commit 63dee21257

View File

@@ -277,7 +277,7 @@ pub fn load_configuration() -> Result<()> {
.ok_or_else(|| anyhow!("cannot convert path to string"))?
);
Command::new("autohotkey.exe")
Command::new(&*AHK_EXE)
.arg(config_ahk.as_os_str())
.output()?;
}