Skip to content

Commit

Permalink
Fix Content.Client.zip name from packaging (OpenDreamProject#1576)
Browse files Browse the repository at this point in the history
It was "Zip" (capitalized) instead of "zip" so the server couldn't find it on a case-sensitive file system.
  • Loading branch information
PJB3005 authored Dec 28, 2023
1 parent 5d0cad6 commit 5194bcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenDreamPackageTool/ServerPackaging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ private static void BuildPlatform(PlatformReg platform, Program.ServerOptions op
CopyContentAssemblies(Path.Combine(releaseDir, "Resources", "Assemblies"));
if (options.HybridAcz) {
// Hybrid ACZ expects "Content.Client.zip" (as it's not OpenDream-specific)
ZipFile.CreateFromDirectory(Path.Combine(options.OutputDir, "OpenDreamClient"), Path.Combine(releaseDir, "Content.Client.Zip"));
ZipFile.CreateFromDirectory(Path.Combine(options.OutputDir, "OpenDreamClient"), Path.Combine(releaseDir, "Content.Client.zip"));
}
}

Expand Down

0 comments on commit 5194bcd

Please sign in to comment.