diff options
author | DioEgizio <83089242+DioEgizio@users.noreply.github.com> | 2022-10-28 07:54:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-28 07:54:17 +0200 |
commit | 952615eadbf2178e550ed111770e1f872934f86e (patch) | |
tree | a288e03b9e1bfb02719c87deb2a4e05d04e2b03c /launcher/FileSystem.cpp | |
parent | 2051de51b54845eb3f361cb5f6c0ade9ae8def4b (diff) | |
parent | 2ba3de79d8df31d196f0cd249b1606e7233cf840 (diff) | |
download | PrismLauncher-952615eadbf2178e550ed111770e1f872934f86e.tar.gz PrismLauncher-952615eadbf2178e550ed111770e1f872934f86e.tar.bz2 PrismLauncher-952615eadbf2178e550ed111770e1f872934f86e.zip |
Merge pull request #301 from DioEgizio/clang-attempt
feat(actions): use clang32 for building on windows
Diffstat (limited to 'launcher/FileSystem.cpp')
-rw-r--r-- | launcher/FileSystem.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/launcher/FileSystem.cpp b/launcher/FileSystem.cpp index 39e68c20..76cfccb0 100644 --- a/launcher/FileSystem.cpp +++ b/launcher/FileSystem.cpp @@ -401,6 +401,7 @@ bool overrideFolder(QString overwritten_path, QString override_path) std::error_code err; fs::copy_options opt = copy_opts::recursive | copy_opts::overwrite_existing; + // FIXME: hello traveller! Apparently std::copy does NOT overwrite existing files on GNU libstdc++ on Windows? fs::copy(toStdString(override_path), toStdString(overwritten_path), opt, err); if (err) { |