From 94d95d45d446b870ca060dce5bbf8555503eb2d5 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Thu, 1 Sep 2022 09:54:22 +0200 Subject: [PATCH] Merge pull request #1095 from flowln/ensure_file_path_in_override --- launcher/FileSystem.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/launcher/FileSystem.cpp b/launcher/FileSystem.cpp index ebb4460dc..bfc5a2626 100644 --- a/launcher/FileSystem.cpp +++ b/launcher/FileSystem.cpp @@ -516,6 +516,7 @@ bool overrideFolder(QString overwritten_path, QString override_path) for (auto file : listFolderPaths(root_override)) { QString destination = file; destination.replace(override_path, overwritten_path); + ensureFilePathExists(destination); qDebug() << QString("Applying override %1 in %2").arg(file, destination);