diff options
author | flow <flowlnlnln@gmail.com> | 2023-01-24 11:15:33 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-24 11:15:33 -0800 |
commit | e4e8a51e5ccec11f844099be6754958fe0502a53 (patch) | |
tree | 401d98fbea551f9e37330e998a60b70cfb47ccc6 | |
parent | 6eb36fb053a45ebea48cb7d9be44b4859de7ec9e (diff) | |
parent | 3ddf41333230cd8d04c18bac27df75941d14ce6e (diff) | |
download | PrismLauncher-e4e8a51e5ccec11f844099be6754958fe0502a53.tar.gz PrismLauncher-e4e8a51e5ccec11f844099be6754958fe0502a53.tar.bz2 PrismLauncher-e4e8a51e5ccec11f844099be6754958fe0502a53.zip |
Merge pull request #781 from Ryex/patch-1
-rw-r--r-- | launcher/Application.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/launcher/Application.cpp b/launcher/Application.cpp index 5f70ab94..6a798822 100644 --- a/launcher/Application.cpp +++ b/launcher/Application.cpp @@ -1547,7 +1547,8 @@ QString Application::getJarPath(QString jarFile) FS::PathCombine(m_rootPath, "share/" + BuildConfig.LAUNCHER_APP_BINARY_NAME), #endif FS::PathCombine(m_rootPath, "jars"), - FS::PathCombine(applicationDirPath(), "jars") + FS::PathCombine(applicationDirPath(), "jars"), + FS::PathCombine(applicationDirPath(), "..", "jars") // from inside build dir, for debuging }; for(QString p : potentialPaths) { |