diff options
author | leo78913 <leo3758@riseup.net> | 2022-10-28 15:46:02 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-28 15:46:02 -0300 |
commit | 4500e345b37f007f9e6311637db9df0351a57dfb (patch) | |
tree | c523d60512749da628e822b579b47dda898782bc /launcher/FileSystem.cpp | |
parent | 43bf601f120c9b1eac1c73feb31c67df54955b6d (diff) | |
parent | e885f3c26a030d093e2c7e60770c069e4d958cff (diff) | |
download | PrismLauncher-4500e345b37f007f9e6311637db9df0351a57dfb.tar.gz PrismLauncher-4500e345b37f007f9e6311637db9df0351a57dfb.tar.bz2 PrismLauncher-4500e345b37f007f9e6311637db9df0351a57dfb.zip |
Merge branch 'PrismLauncher:develop' into toolbar-icons
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) { |