Update deps.ps1

This commit is contained in:
Netch
2021-07-20 09:56:08 +08:00
parent ed60926cd5
commit 51845532d2

View File

@@ -3,7 +3,7 @@ param (
$OutputPath = 'release'
)
if ( Test-Path -Path "$OutputPath" -IsValid ) {
if ( -Not (Test-Path -Path "$OutputPath") ) {
New-Item -ItemType Directory -Name "$OutputPath" | Out-Null
}