diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2017-12-07 10:50:05 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-07 10:50:05 -0600 |
| commit | 2497d4e15193d916cb62c5132cfbd4d203d2d3ba (patch) | |
| tree | 2662c2f4920f085795abfb2527653e63774f3283 | |
| parent | fa598e86dbce096b5439ae704dd18cc5b1289191 (diff) | |
| parent | 9a2a1a4301f5bb7e82199b9330e2b4d0731fcfe1 (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)
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | src/mainwindow.cpp | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -9,5 +9,9 @@ CMakeLists.txt.user edit stderr.log stdout.log +vs_stderr.log +vs_stdout.log build +/vsbuild +/CMakeFiles .idea 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";
|
