toru/src/vcs.rs
aaron-jack-manning 71d1744d9b svn integration
2022-08-24 20:38:47 +10:00

32 lines
665 B
Rust

use crate::error;
use std::fs;
use std::path;
use std::process;
pub enum Vcs {
Git,
Svn,
}
pub fn command(args : Vec<String>, vcs : Vcs, vault_folder : &path::Path) -> Result<(), error::Error> {
let mut command = match vcs {
Vcs::Git => process::Command::new("git"),
Vcs::Svn => process::Command::new("svn"),
};
let mut child = command
.current_dir(vault_folder)
.args(args)
.spawn()?;
let _ = child.wait()?;
Ok(())
}
pub fn create_gitignore(vault_folder : &path::Path) -> Result<(), error::Error> {
Ok(fs::write(vault_folder.join(".gitignore"), "state.toml\ntemp.toml\ntemp.md")?)
}