X-Git-Url: https://git.r.bdr.sh/rbdr/blog/blobdiff_plain/6352ebb0eb4cb83240c6d4998e0ef1375b041191..36a4680d18de012e2e5c732f9db161dafa884344:/src/command/remove_remote.rs diff --git a/src/command/remove_remote.rs b/src/command/remove_remote.rs index 8188beb..b2f554c 100644 --- a/src/command/remove_remote.rs +++ b/src/command/remove_remote.rs @@ -1,3 +1,4 @@ +use std::fs::remove_file; use std::io::Result; use crate::configuration::Configuration; @@ -14,8 +15,10 @@ impl super::Command for RemoveRemote { vec![] } - fn execute(&self, input: Option<&String>, _: &Configuration, _: &String) -> Result<()> { - println!("Remove Remote: {:?}!", input); + fn execute(&self, _: Option<&String>, configuration: &Configuration, _: &String) -> Result<()> { + if configuration.remote_config.exists() { + remove_file(&configuration.remote_config)?; + } return Ok(()) }