Fix explicit working dir by "-workdir" argument.

Regression was introduced in ff84962148.

Fixes #4123.
This commit is contained in:
John Preston 2017-12-07 17:56:36 +04:00
parent 320105f201
commit a032f24d58
1 changed files with 6 additions and 1 deletions

View File

@ -320,7 +320,12 @@ namespace Logs {
#ifdef _DEBUG
cForceWorkingDir(cExeDir());
#else // _DEBUG
cForceWorkingDir(psAppDataPath());
if (!cWorkingDir().isEmpty()) {
// This value must come only from the "-workdir" argument.
cForceWorkingDir(cWorkingDir());
} else {
cForceWorkingDir(psAppDataPath());
}
#endif // !_DEBUG
workingDirChosen = true;