X-Git-Url: https://git.r.bdr.sh/rbdr/blog/blobdiff_plain/d620665f6b2e1ae5db4c98a09e35bd63133ae87f..50f53dc480fda8b3daab7a34454c2dd9f3f5f991:/src/command/sync_up.rs diff --git a/src/command/sync_up.rs b/src/command/sync_up.rs index cf49518..c44e0b0 100644 --- a/src/command/sync_up.rs +++ b/src/command/sync_up.rs @@ -1,4 +1,6 @@ use std::io::Result; +use crate::configuration::Configuration; +use crate::remote::sync_up; pub struct SyncUp; @@ -13,8 +15,15 @@ impl super::Command for SyncUp { vec![] } - fn execute(&self, input: Option<&String>) -> Result<()> { - println!("Sync Up: {:?}!", input); + fn execute(&self, _: Option<&String>, configuration: &Configuration, command: &String) -> Result<()> { + match sync_up(&configuration.data_directory, &configuration.remote_config) { + Ok(_) => {} + Err(e) => { + if command == self.command() { + return Err(e) + } + } + } return Ok(()) } @@ -27,6 +36,6 @@ impl super::Command for SyncUp { } fn help(&self) -> &'static str { - "\t\t\t\tPushes to the git remote if configured." + "\t\t\t\tPushes to the git remote if configured" } }