From 51845532d20f43d17eb53dd25f64a22ad1266fcc Mon Sep 17 00:00:00 2001 From: Netch Date: Tue, 20 Jul 2021 09:56:08 +0800 Subject: [PATCH] Update deps.ps1 --- deps.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.ps1 b/deps.ps1 index a31cc00e..b2895f51 100644 --- a/deps.ps1 +++ b/deps.ps1 @@ -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 }