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

@@ -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) {

Loading…
Cancel
Save