summaryrefslogtreecommitdiff
path: root/src/commands/update.rs
diff options
context:
space:
mode:
authorfxqnlr <[email protected]>2023-01-29 13:56:06 +0100
committerfxqnlr <[email protected]>2023-01-29 13:56:06 +0100
commit54752f7eb39e20929a7816c90be33bf8dbff2a6c (patch)
tree1b2f6d22733c380b0bb6f5a1e9227dc2082da49f /src/commands/update.rs
parent57ab6addda10a49c18dc09208dfb319c0205e869 (diff)
downloadmodlist-54752f7eb39e20929a7816c90be33bf8dbff2a6c.tar
modlist-54752f7eb39e20929a7816c90be33bf8dbff2a6c.tar.gz
modlist-54752f7eb39e20929a7816c90be33bf8dbff2a6c.zip
fixed not downloading on mod add
Diffstat (limited to 'src/commands/update.rs')
-rw-r--r--src/commands/update.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/commands/update.rs b/src/commands/update.rs
index f71f537..d400a24 100644
--- a/src/commands/update.rs
+++ b/src/commands/update.rs
@@ -74,7 +74,7 @@ pub async fn cmd_update(config: Cfg, liststack: Vec<List>, clean: bool, direct_d
74 //Linebreak readability 74 //Linebreak readability
75 println!(""); 75 println!("");
76 76
77 if direct_download { 77 if direct_download && !updatestack.is_empty() {
78 download_versions(current_list.clone(), config.clone(), updatestack).await?; 78 download_versions(current_list.clone(), config.clone(), updatestack).await?;
79 79
80 //Disable old versions 80 //Disable old versions
@@ -90,7 +90,6 @@ pub async fn cmd_update(config: Cfg, liststack: Vec<List>, clean: bool, direct_d
90 } 90 }
91 } 91 }
92 }; 92 };
93
94 } 93 }
95 94
96 Ok(()) 95 Ok(())