We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36fc3c0 commit b864550Copy full SHA for b864550
src-tauri/src/util.rs
@@ -34,7 +34,7 @@ pub async fn get_system_path() -> String {
34
const DEF_PATH: &str = "/opt/homebrew/bin:/usr/local/bin:/usr/bin";
35
tokio::process::Command::new("sh")
36
.arg("-c")
37
- .arg("echo hello")
+ .arg("echo $PATH")
38
.output()
39
.await
40
.map(|output| output.stdout)
0 commit comments