diff options
author | glowiak <52356948+glowiak@users.noreply.github.com> | 2022-02-06 09:35:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-06 09:35:48 +0100 |
commit | dba9199e58aa08faa22682705b3137684c385fcf (patch) | |
tree | f41e2d8af7dcfa38a39a39a647a599f892eac1f5 | |
parent | e806903d7e611d44c13118eb998140277a7e4ee1 (diff) | |
download | PrismLauncher-dba9199e58aa08faa22682705b3137684c385fcf.tar.gz PrismLauncher-dba9199e58aa08faa22682705b3137684c385fcf.tar.bz2 PrismLauncher-dba9199e58aa08faa22682705b3137684c385fcf.zip |
Support OpenBSD in 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 f9b7d349..c02cd1e7 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) || defined(Q_OS_FREEBSD) +#elif defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD) || defined (Q_OS_OPENBSD) QString finishCmd = FS::PathCombine(m_root, BuildConfig.LAUNCHER_NAME); #elif defined Q_OS_MAC QString finishCmd = QApplication::applicationFilePath(); |