diff options
| author | Eran Mizrahi <erasmux@gmail.com> | 2017-12-07 18:22:37 +0200 |
|---|---|---|
| committer | Eran Mizrahi <erasmux@gmail.com> | 2017-12-07 18:22:37 +0200 |
| commit | 9a2a1a4301f5bb7e82199b9330e2b4d0731fcfe1 (patch) | |
| tree | 2662c2f4920f085795abfb2527653e63774f3283 /src/mainwindow.cpp | |
| parent | b3898c5d66e6b9ffd6bce0615d225f75b5d77b77 (diff) | |
Fix lootcli sorting when temp dir contains a space (i.e. user name has a space)
Diffstat (limited to 'src/mainwindow.cpp')
| -rw-r--r-- | src/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index cdc32918..48dfdfbd 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -4273,7 +4273,7 @@ void MainWindow::on_bossButton_clicked() parameters << "--game" << m_OrganizerCore.managedGame()->gameShortName()
<< "--gamePath" << QString("\"%1\"").arg(m_OrganizerCore.managedGame()->gameDirectory().absolutePath())
<< "--pluginListPath" << QString("\"%1/loadorder.txt\"").arg(m_OrganizerCore.profilePath())
- << "--out" << outPath;
+ << "--out" << QString("\"%1\"").arg(outPath);
if (m_DidUpdateMasterList) {
parameters << "--skipUpdateMasterlist";
|
