From 6c6859202d96ff79a929799b3cd6f3bbcc9664a8 Mon Sep 17 00:00:00 2001 From: Dzejkop Date: Tue, 24 Jul 2018 13:31:32 +0200 Subject: [PATCH 1/2] Wrapping patcher-data-location argument in qutoes --- Assets/PatchKit Patcher/Scripts/AppStarter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/PatchKit Patcher/Scripts/AppStarter.cs b/Assets/PatchKit Patcher/Scripts/AppStarter.cs index 92a848a6..970240f0 100644 --- a/Assets/PatchKit Patcher/Scripts/AppStarter.cs +++ b/Assets/PatchKit Patcher/Scripts/AppStarter.cs @@ -72,7 +72,7 @@ private ProcessStartInfo GetProcessStartInfo(string executablePath, PlatformType return new ProcessStartInfo { FileName = executablePath, - Arguments = string.Format("+patcher-data-location {0}", _app.LocalMetaData.GetFilePath()), + Arguments = string.Format("+patcher-data-location \"{0}\"", _app.LocalMetaData.GetFilePath()), WorkingDirectory = workingDir }; case PlatformType.OSX: From 4f1a9207ca448e2d20dcdded20e65c98d762be7c Mon Sep 17 00:00:00 2001 From: Dzejkop Date: Tue, 24 Jul 2018 13:32:49 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1992ef80..b3393683 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - Handling of the ZLib exception +- Invalid handling of patcher-data-location argument with spaces ## [3.9.2] ### Added