Skip to content

Commit 2188406

Browse files
authored
Merge pull request #75 from patchkit-net/bugfix/v3.10.0/1004-wrapping-patcher-data-location-in-qutoes
Bugfix/v3.10.0/1004 wrapping patcher data location in qutoes
2 parents 5659c48 + 4f1a920 commit 2188406

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Assets/PatchKit Patcher/Scripts/AppStarter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private ProcessStartInfo GetProcessStartInfo(string executablePath, PlatformType
7272
return new ProcessStartInfo
7373
{
7474
FileName = executablePath,
75-
Arguments = string.Format("+patcher-data-location {0}", _app.LocalMetaData.GetFilePath()),
75+
Arguments = string.Format("+patcher-data-location \"{0}\"", _app.LocalMetaData.GetFilePath()),
7676
WorkingDirectory = workingDir
7777
};
7878
case PlatformType.OSX:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3636

3737
### Fixed
3838
- Handling of the ZLib exception
39+
- Invalid handling of patcher-data-location argument with spaces
3940

4041
## [3.9.2]
4142
### Added

0 commit comments

Comments
 (0)