Skip to content

Commit

Permalink
fix creating the folder if existing (oops)
Browse files Browse the repository at this point in the history
  • Loading branch information
itisrazza committed May 1, 2021
1 parent f9ffd58 commit 8b02920
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BuildScripts/BuildAll.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ $targetPlatforms = @(
)

# create a releases folder
if (Test-Path "Releases") { New-Item -ItemType "directory" -Path "Releases" -Force }
if (Test-Path "Releases/Plugins") { New-Item -ItemType "directory" -Path "Releases/Plugins" -Force }
New-Item -ItemType "directory" -Path "Releases" -Force
New-Item -ItemType "directory" -Path "Releases/Plugins" -Force


# build cross-platform release for core logic library
Expand Down

0 comments on commit 8b02920

Please sign in to comment.