Skip to content

Commit

Permalink
Fix packaging from scratch (#1516)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyberboss authored Oct 20, 2023
1 parent 1a3a2c7 commit 8413b93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion OpenDreamPackageTool/ClientPackaging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public static void Package(Program.ClientOptions options) {
private static void WipeBin() {
Console.WriteLine("Clearing old build artifacts (if any)...");

Directory.Delete("bin", true);
if (Directory.Exists("bin"))
Directory.Delete("bin", true);
}

private static void Build(Program.ClientOptions options) {
Expand Down

0 comments on commit 8413b93

Please sign in to comment.