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 38579a6 commit c7b5162Copy full SHA for c7b5162
src/hoc.rs
@@ -96,13 +96,15 @@ pub(crate) async fn hoc(params: &HocParams, state: &AppState) -> Result<()> {
96
arg.push("--".to_string());
97
arg.push(".".to_string());
98
99
+ // TODO: this is also kinda blocking but should be fast enough
100
let output = Command::new("git")
101
.args(&arg)
102
.current_dir(&repo_path)
103
.output()?
104
.stdout;
105
let output = String::from_utf8_lossy(&output);
106
107
108
let output_commits = Command::new("git")
109
.args(&arg_commit_count)
110
0 commit comments