1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: looking for plugins in their Debian install directory
Author: Pierre Gruet <pgt@debian.org>
Bug-Debian: https://bugs.debian.org/1071435
Forwarded: not-needed
Last-Update: 2024-05-22
--- a/src/corelibs/U2Private/src/PluginSupportImpl.cpp
+++ b/src/corelibs/U2Private/src/PluginSupportImpl.cpp
@@ -327,7 +327,7 @@
}
}
#endif
- return QDir(AppContext::getWorkingDirectoryPath() + "/plugins");
+ return QDir("/usr/lib/ugene/plugins");
}
bool PluginSupportImpl::isDefaultPluginsDir(const QString& url) {
|