From 36a4680d18de012e2e5c732f9db161dafa884344 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sat, 9 Mar 2024 00:48:11 +0100 Subject: Add remote management --- src/command/remove_remote.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to '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(()) } -- cgit