Browse Source

Fix non-POSIX URL paths on Windows

default_compile_flags
vector-of-bool 4 years ago
parent
commit
0c9128b865
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/dds/remote/remote.cpp

+ 1
- 1
src/dds/remote/remote.cpp View File

@@ -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);
}


Loading…
Cancel
Save