summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Rimpo <jeremy.rimpo@servermonkey.com>2017-12-07 10:50:05 -0600
committerGitHub <noreply@github.com>2017-12-07 10:50:05 -0600
commit2497d4e15193d916cb62c5132cfbd4d203d2d3ba (patch)
tree2662c2f4920f085795abfb2527653e63774f3283 /src
parentfa598e86dbce096b5439ae704dd18cc5b1289191 (diff)
parent9a2a1a4301f5bb7e82199b9330e2b4d0731fcfe1 (diff)
Merge pull request #136 from erasmux/dev
Small fix when running lootcli and temp dir contains a space (i.e. user name has a space)
Diffstat (limited to 'src')
-rw-r--r--src/mainwindow.cpp2
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";