Procházet zdrojové kódy

Clarify message in import collision for repo

default_compile_flags
vector-of-bool před 4 roky
rodič
revize
2e9fe665c5
1 změnil soubory, kde provedl 4 přidání a 2 odebrání
  1. +4
    -2
      src/dds/repo/repo.cpp

+ 4
- 2
src/dds/repo/repo.cpp Zobrazit soubor

@@ -69,8 +69,10 @@ void repository::add_sdist(const sdist& sd, if_exists ife_action) {
}
auto sd_dest = _root / sd.manifest.pkg_id.to_string();
if (fs::exists(sd_dest)) {
auto msg = fmt::format("Source distribution '{}' is already available in the local repo",
sd.path.string());
auto msg = fmt::
format("Package '{}' (Importing from [{}]) is already available in the local repo",
sd.manifest.pkg_id.to_string(),
sd.path.string());
if (ife_action == if_exists::throw_exc) {
throw_user_error<errc::sdist_exists>(msg);
} else if (ife_action == if_exists::ignore) {

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