Parcourir la source

Fix non-POSIX URL paths on Windows

default_compile_flags
vector-of-bool il y a 4 ans
Parent
révision
0c9128b865
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/dds/remote/remote.cpp

+ 1
- 1
src/dds/remote/remote.cpp Voir le fichier

@@ -48,7 +48,7 @@ struct remote_db {

static remote_db download_and_open_for_base(neo::url url) {
auto repo_url = url;
repo_url.path = fs::path(url.path).append("repo.db").string();
repo_url.path = fs::path(url.path).append("repo.db").generic_string();
return download_and_open(repo_url);
}


Chargement…
Annuler
Enregistrer