Procházet zdrojové kódy

Catch unexpected system_error during repoman_add

default_compile_flags
vector-of-bool před 3 roky
rodič
revize
b9e5c67c49
1 změnil soubory, kde provedl 7 přidání a 0 odebrání
  1. +7
    -0
      src/dds/cli/cmd/repoman_add.cpp

+ 7
- 0
src/dds/cli/cmd/repoman_add.cpp Zobrazit soubor

@@ -82,6 +82,13 @@ int repoman_add(const options& opts) {
[](dds::e_system_error_exc e, dds::e_open_repo_db db) {
dds_log(error, "Error while opening repository database {}: {}", db.path, e.message);
return 1;
},
[](dds::e_system_error_exc e, neo::url url, http_response_info) {
dds_log(error,
"An error occured while downloading [.bold.red[{}]]: {}"_styled,
url.to_string(),
e.message);
return 1;
});
}


Načítá se…
Zrušit
Uložit