Merge pull request #32022 from neikeq/fix-mono-export-windows-backslash
Mono: Fix PCK assembly paths when exporting from Windows
This commit is contained in:
commit
da2af72d73
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ namespace GodotTools
|
|||
{
|
||||
private void AddFile(string srcPath, string dstPath, bool remap = false)
|
||||
{
|
||||
AddFile(dstPath, File.ReadAllBytes(srcPath), remap);
|
||||
AddFile(dstPath.Replace("\\", "/"), File.ReadAllBytes(srcPath), remap);
|
||||
}
|
||||
|
||||
public override void _ExportFile(string path, string type, string[] features)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue