diff options
author | flow <flowlnlnln@gmail.com> | 2022-10-22 10:18:58 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-22 10:18:58 -0300 |
commit | 4e99e10cbdc8f27c7c8a84ae6f49ae69ca92045a (patch) | |
tree | e077bfee68aaaed50e419bf6057c7d7876a63dc5 /launcher | |
parent | 54c26b05faa73dd6c8eb21f6fa898d438a3e867a (diff) | |
parent | 2592c690213506c3cdfbc441c20f13ef7cf3eb23 (diff) | |
download | PrismLauncher-4e99e10cbdc8f27c7c8a84ae6f49ae69ca92045a.tar.gz PrismLauncher-4e99e10cbdc8f27c7c8a84ae6f49ae69ca92045a.tar.bz2 PrismLauncher-4e99e10cbdc8f27c7c8a84ae6f49ae69ca92045a.zip |
Merge pull request #218 from getchoo/change-jars-path
Diffstat (limited to 'launcher')
-rw-r--r-- | launcher/Application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/Application.cpp b/launcher/Application.cpp index 6ffec1ae..97f757f7 100644 --- a/launcher/Application.cpp +++ b/launcher/Application.cpp @@ -1571,7 +1571,7 @@ QString Application::getJarPath(QString jarFile) { QStringList potentialPaths = { #if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD) || defined(Q_OS_OPENBSD) - FS::PathCombine(m_rootPath, "share/jars"), + FS::PathCombine(m_rootPath, "share/" + BuildConfig.LAUNCHER_APP_BINARY_NAME), #endif FS::PathCombine(m_rootPath, "jars"), FS::PathCombine(applicationDirPath(), "jars") |