Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ END TEMPLATE-->

* Fix DynamicTree.Clear not removing node references.
* Reverted validation for `UiBox2i` `ctor`s as it was causing regressions in debug UIs.
* Fix windows Robust.Packaging not using correct path separators for zip archives.

### Other

Expand Down
3 changes: 3 additions & 0 deletions Robust.Packaging/RobustSharedPackaging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ public static Task DoResourceCopy(
continue;

var targetPath = Path.Combine(targetDir, filename);
if (Path.DirectorySeparatorChar != '/')
targetPath = targetPath.Replace(Path.DirectorySeparatorChar, '/');

if (Directory.Exists(path))
CopyDirIntoZip(path, targetPath, pass);
else
Expand Down
Loading