Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
timopruesse committed Apr 4, 2022
1 parent 8f15b19 commit 65475a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/clone.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use crate::{
pub struct CloneCommand {}

fn get_installed_repo_url(target_dir: &PathArc) -> Result<String, String> {
let result = git(&["config", "--get", "remote.origin.url"], &target_dir);
let result = git(&["config", "--get", "remote.origin.url"], target_dir);
if let Err(err_result) = result {
return Err(err_result.to_string());
}
Expand Down

0 comments on commit 65475a2

Please sign in to comment.