This commit is contained in:
Wildan M 2025-10-03 13:59:14 +07:00
parent c51fad08ff
commit 26e6e0dc06
2 changed files with 5 additions and 2 deletions

View File

@ -370,7 +370,10 @@ fn fetch(recipe_dir: &Path, source: &Option<SourceRecipe>) -> Result<PathBuf, St
// Clone the repository to source.tmp
let mut command = Command::new("git");
command.arg("clone").arg("--recursive").arg(translate_mirror(git));
command
.arg("clone")
.arg("--recursive")
.arg(translate_mirror(git));
if let Some(branch) = branch {
command.arg("--branch").arg(branch);
}

View File

@ -1,6 +1,6 @@
pub mod blake3;
pub mod recipe;
pub mod config;
pub mod recipe;
mod progress_bar;