From 8bc529be3dae2d0a515f55812c24ee669b4f34bf Mon Sep 17 00:00:00 2001 From: flow Date: Sat, 15 Oct 2022 09:20:31 -0300 Subject: [PATCH] fix: include hidden files when copying instances fixes instance ccopy on linux .-. Signed-off-by: flow --- launcher/FileSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/FileSystem.cpp b/launcher/FileSystem.cpp index 5d179641..7ab32513 100644 --- a/launcher/FileSystem.cpp +++ b/launcher/FileSystem.cpp @@ -170,7 +170,7 @@ bool copy::operator()(const QString& offset) // blacklisted paths, so we iterate over the source directory, and if there's no blacklist // match, we copy the file. QDir src_dir(src); - QDirIterator source_it(src, QDir::Filter::Files, QDirIterator::Subdirectories); + QDirIterator source_it(src, QDir::Filter::Files | QDir::Filter::Hidden, QDirIterator::Subdirectories); while (source_it.hasNext()) { auto src_path = source_it.next();