diff options
| author | Namilskyy <alive6863@gmail.com> | 2025-11-30 16:26:39 +0300 |
|---|---|---|
| committer | Namilskyy <alive6863@gmail.com> | 2025-11-30 16:31:25 +0300 |
| commit | 4bf685f951217b0b5b4df067b8dfeec8bae01357 (patch) | |
| tree | 7e0065d13a3eb88b783e9468e785856784d8734e /src/main.rs | |
| parent | f756b0d1c97193a0c1ad440977fb279c88c4e66a (diff) | |
Major updates in network sector, implemented package fetch by index, some fixes in pkgtoolkit
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index e295722..8677fdb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -135,7 +135,7 @@ async fn main() -> Result<(), std::io::Error> { let config = Config::parse().unwrap(); println!("Updating index from {}", config.repo.repo_url); let mut i2pd = I2PPackage::new(config); - let _index = I2PPackage::fetch_index(&mut i2pd).await?; + let _index = I2PPackage::fetch_index(&mut i2pd).await; println!("Index updated"); return Ok(()); } |
