We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e088078 + 3853549 commit 2b45163Copy full SHA for 2b45163
1 file changed
src/remote.rs
@@ -12,7 +12,7 @@ pub fn get_files() -> (String, String) {
12
sh.change_dir(config_dir.clone());
13
let _res = sh.current_dir();
14
let cli_dir = config_dir.join("meetups");
15
- fs::remove_dir_all(cli_dir).unwrap();
+ let _res = fs::remove_dir_all(cli_dir);
16
17
let git_result = cmd!(sh, "git clone https://github.com/rust-basel/meetups.git")
18
.read()
0 commit comments