mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-27 07:14:18 +08:00
fmt
This commit is contained in:
parent
c51fad08ff
commit
26e6e0dc06
@ -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);
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
pub mod blake3;
|
||||
pub mod recipe;
|
||||
pub mod config;
|
||||
pub mod recipe;
|
||||
|
||||
mod progress_bar;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user