Skip to content

Commit

Permalink
fix: i forgot how rust works
Browse files Browse the repository at this point in the history
  • Loading branch information
null8626 authored Feb 2, 2024
1 parent 521e2aa commit ec94b71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ pub fn get_git_branch() -> Result<String> {
}

pub fn git_command<I, S>(args: I) -> Result<String>
where:
where
I: IntoIterator<Item = S>,
S: AsRef<OsStr>,
{
Expand All @@ -148,7 +148,7 @@ pub fn get_docker_version() -> Result<String> {
}

pub fn run_command<I, S>(prog: &str, args: Vec<&str>) -> Result<String>
where:
where
I: IntoIterator<Item = S>,
S: AsRef<OsStr>,
{
Expand Down

0 comments on commit ec94b71

Please sign in to comment.