diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-07-13 19:56:36 -0700 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-07-13 19:56:36 -0700 |
commit | 95b300f1ea7791a7a358d95abb473699d1f016b7 (patch) | |
tree | 68f818f5cfa635238b1cbc5a0156b25cb63d3554 /launcher/Application.cpp | |
parent | 4dc4c589ba21df9c5e04081e35788862b498f29d (diff) | |
download | PrismLauncher-95b300f1ea7791a7a358d95abb473699d1f016b7.tar.gz PrismLauncher-95b300f1ea7791a7a358d95abb473699d1f016b7.tar.bz2 PrismLauncher-95b300f1ea7791a7a358d95abb473699d1f016b7.zip |
packaging: use PascalCase folder name instead
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher/Application.cpp')
-rw-r--r-- | launcher/Application.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/Application.cpp b/launcher/Application.cpp index 8c60f697..372a4fc6 100644 --- a/launcher/Application.cpp +++ b/launcher/Application.cpp @@ -434,7 +434,7 @@ Application::Application(int &argc, char **argv) : QApplication(argc, argv) // seach root path if(!foundLoggingRules) { #if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD) || defined(Q_OS_OPENBSD) - logRulesPath = FS::PathCombine(m_rootPath, "share", BuildConfig.LAUNCHER_APP_BINARY_NAME, logRulesFile); + logRulesPath = FS::PathCombine(m_rootPath, "share", BuildConfig.LAUNCHER_NAME, logRulesFile); #else logRulesPath = FS::PathCombine(m_rootPath, logRulesFile); #endif @@ -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/" + BuildConfig.LAUNCHER_APP_BINARY_NAME), + FS::PathCombine(m_rootPath, "share/" + BuildConfig.LAUNCHER_NAME), #endif FS::PathCombine(m_rootPath, "jars"), FS::PathCombine(applicationDirPath(), "jars"), |