svn integration
This commit is contained in:
31
src/vcs.rs
Normal file
31
src/vcs.rs
Normal file
@@ -0,0 +1,31 @@
|
||||
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")?)
|
||||
}
|
||||
Reference in New Issue
Block a user