]> git.r.bdr.sh - rbdr/blog/blob - src/command/remove_remote.rs
b2f554cc2a7e0427adc53f1e8d9c656d540734a0
[rbdr/blog] / src / command / remove_remote.rs
1 use std::fs::remove_file;
2 use std::io::Result;
3 use crate::configuration::Configuration;
4
5 pub struct RemoveRemote;
6
7 impl RemoveRemote {
8 pub fn new() -> Self {
9 RemoveRemote
10 }
11 }
12
13 impl super::Command for RemoveRemote {
14 fn before_dependencies(&self) -> Vec<Box<dyn super::Command>> {
15 vec![]
16 }
17
18 fn execute(&self, _: Option<&String>, configuration: &Configuration, _: &String) -> Result<()> {
19 if configuration.remote_config.exists() {
20 remove_file(&configuration.remote_config)?;
21 }
22 return Ok(())
23 }
24
25 fn after_dependencies(&self) -> Vec<Box<dyn super::Command>> {
26 vec![]
27 }
28
29 fn command(&self) -> &'static str {
30 "remove-remote"
31 }
32
33 fn help(&self) -> &'static str {
34 "\t\t\tRemoves the git remote"
35 }
36 }