Skip to content

Commit f01b4fb

Browse files
committed
IntegrationPlugins: Ignore .debug files
1 parent a042faa commit f01b4fb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/deployment.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ inline bool deployIntegrationPlugins(appdir::AppDir& appDir, const fs::path& qtP
3737
// otherwise, when the directory doesn't exist, it might just copy all files to files called like
3838
// destinationDir
3939
auto destinationDir = appDir.path() / "usr/plugins" / subDir / "";
40+
if (i->path().extension() == ".debug") {
41+
ldLog() << LD_DEBUG << "skipping .debug file:" << i->path() << std::endl;
42+
continue;
43+
}
4044

4145
if (!appDir.deployLibrary(*i, destinationDir))
4246
return false;

0 commit comments

Comments
 (0)