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 f3a4266 commit f0ae752Copy full SHA for f0ae752
compiler-cli/src/dependencies.rs
@@ -38,7 +38,7 @@ use crate::{
38
TreeOptions,
39
build_lock::{BuildLock, Guard},
40
cli,
41
- fs::{self, ProjectIO, get_os},
+ fs::{self, ProjectIO},
42
http::HttpClient,
43
text_layout::space_table,
44
};
@@ -802,7 +802,7 @@ fn execute_command(command: &mut Command) -> Result<std::process::Output> {
802
Err(error) => Err(match error.kind() {
803
ErrorKind::NotFound => Error::ShellProgramNotFound {
804
program: "git".into(),
805
- os: get_os(),
+ os: fs::get_os(),
806
},
807
808
other => Error::ShellCommand {
0 commit comments