Skip to content

Commit 039c9c0

Browse files
committed
Fix another path issue
1 parent 54c3d3f commit 039c9c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Analyzer/AnalyzerTool.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public int Analyze(string path, string databaseName, string searchPattern, bool
3636

3737
try
3838
{
39-
archive = UnityFileSystem.MountArchive(file, "/");
39+
archive = UnityFileSystem.MountArchive(file, "archive:" + Path.DirectorySeparatorChar);
4040
}
4141
catch (NotSupportedException)
4242
{
@@ -65,7 +65,7 @@ public int Analyze(string path, string databaseName, string searchPattern, bool
6565
{
6666
if (node.Flags.HasFlag(ArchiveNodeFlags.SerializedFile))
6767
{
68-
writer.WriteSerializedFile(node.Path, "/");
68+
writer.WriteSerializedFile(node.Path, "archive:" + Path.DirectorySeparatorChar);
6969
}
7070
}
7171
}

0 commit comments

Comments
 (0)