Skip to content

Commit

Permalink
Ensure packager creates a release folder (#28426)
Browse files Browse the repository at this point in the history
I was screaming at the github actions runner before i noticed something i had done before caused me to never have a release folder and thus fail.
  • Loading branch information
VasilisThePikachu authored Jun 8, 2024
1 parent c4966e5 commit db6548b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Content.Packaging/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@

if (parsed.WipeRelease)
WipeRelease();
else
{
// Ensure the release directory exists. Otherwise, the packaging will fail.
Directory.CreateDirectory("release");
}

if (!parsed.SkipBuild)
WipeBin();
Expand Down

0 comments on commit db6548b

Please sign in to comment.