diff options
author | Petr Mrázek <peterix@users.noreply.github.com> | 2021-12-30 20:00:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-30 20:00:45 +0100 |
commit | 3efcccf334e28d03605dd0597f53f900105cf04b (patch) | |
tree | ecafd89c7eb90d04f428c907da86c7d6b134c166 /launcher/UpdateController.cpp | |
parent | 5e909a4e852a5bf3ba9dec9081b4839773bfc0ce (diff) | |
parent | f42c3a953c15b01632131435e4885f9acc3b1f1a (diff) | |
download | PrismLauncher-3efcccf334e28d03605dd0597f53f900105cf04b.tar.gz PrismLauncher-3efcccf334e28d03605dd0597f53f900105cf04b.tar.bz2 PrismLauncher-3efcccf334e28d03605dd0597f53f900105cf04b.zip |
Merge pull request #4345 from graemeg/freebsd-support
Adds FreeBSD support to MultiMC
Diffstat (limited to 'launcher/UpdateController.cpp')
-rw-r--r-- | launcher/UpdateController.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/UpdateController.cpp b/launcher/UpdateController.cpp index 136e22fd..f9b7d349 100644 --- a/launcher/UpdateController.cpp +++ b/launcher/UpdateController.cpp @@ -93,7 +93,7 @@ void UpdateController::installUpdates() qDebug() << "Installing updates."; #ifdef Q_OS_WIN QString finishCmd = QApplication::applicationFilePath(); -#elif defined Q_OS_LINUX +#elif defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD) QString finishCmd = FS::PathCombine(m_root, BuildConfig.LAUNCHER_NAME); #elif defined Q_OS_MAC QString finishCmd = QApplication::applicationFilePath(); |