Browse Source

Clarify message in import collision for repo

default_compile_flags
vector-of-bool 4 years ago
parent
commit
2e9fe665c5
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      src/dds/repo/repo.cpp

+ 4
- 2
src/dds/repo/repo.cpp View File

} }
auto sd_dest = _root / sd.manifest.pkg_id.to_string(); auto sd_dest = _root / sd.manifest.pkg_id.to_string();
if (fs::exists(sd_dest)) { 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) { if (ife_action == if_exists::throw_exc) {
throw_user_error<errc::sdist_exists>(msg); throw_user_error<errc::sdist_exists>(msg);
} else if (ife_action == if_exists::ignore) { } else if (ife_action == if_exists::ignore) {

Loading…
Cancel
Save