Explorar el Código

Skip dotfiles in the repo

default_compile_flags
vector-of-bool hace 5 años
padre
commit
172e63872a
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. +3
    -0
      src/dds/repo/repo.cpp

+ 3
- 0
src/dds/repo/repo.cpp Ver fichero

@@ -64,6 +64,9 @@ std::vector<sdist> repository::load_sdists() const noexcept {
using namespace ranges::views;

auto try_read_sdist = [](path_ref p) -> std::optional<sdist> {
if (starts_with(p.filename().string(), ".")) {
return std::nullopt;
}
try {
return sdist::from_directory(p);
} catch (const std::runtime_error& e) {

Cargando…
Cancelar
Guardar