You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
malachite/src/operations/pull.rs

64 lines
1.8 KiB
Rust

use std::env;
use std::process::Command;
2 years ago
use crate::info;
use crate::{crash, internal::AppExitCode, log};
2 years ago
fn do_the_pulling(repos: Vec<String>) {
for repo in repos {
// Set root dir to return after each git pull
let root_dir = env::current_dir().unwrap();
log!("Root dir: {:?}", root_dir);
info!("Entering working directory: {}", &repo);
env::set_current_dir(repo).unwrap();
log!("Current dir: {:?}", env::current_dir().unwrap());
log!("Pulling");
Command::new("git")
.arg("pull")
.spawn()
.unwrap()
.wait()
.unwrap();
// Return to root dir
env::set_current_dir(root_dir).unwrap();
log!("Returned to root dir: {:?}", env::current_dir().unwrap());
}
}
pub fn pull(packages: Vec<String>, exclude: Vec<String>) {
// If no packages are specified, imply all
let all = packages.is_empty();
log!("All: {}", all);
// Read repos from config file
let repos = crate::workspace::read_cfg()
.repo
.iter()
.map(|x| x.name.clone())
.collect::<Vec<String>>();
log!("Repos: {:?}", repos);
// Set repos_applicable for next function
let mut repos_applicable = if all { repos } else { packages };
log!("Repos applicable: {:?}", repos_applicable);
// Subtract exclude from repos_applicable
if !exclude.is_empty() {
for ex in &exclude {
repos_applicable.retain(|x| *x != *ex);
}
}
log!("Exclude: {:?}", exclude);
log!("Repos applicable excluded: {:?}", repos_applicable);
// If all is not specified and packages is empty, crash
if repos_applicable.is_empty() {
crash!(AppExitCode::NoPkgs, "No packages specified");
}
// Pull!
log!("Pulling {:?}", repos_applicable);
do_the_pulling(repos_applicable);
3 years ago
}