Dont error on fail to remove tmp folder

This commit is contained in:
Syer10
2021-03-25 16:44:20 -04:00
parent 04f27e2b13
commit 834e20f101

View File

@@ -2,7 +2,7 @@ if ($(Split-Path -Path (Get-Location) -Leaf) -eq "scripts" ) {
Set-Location ..
}
Remove-Item -Recurse -Force "tmp" | Out-Null
Remove-Item -Recurse -Force "tmp" -ErrorAction SilentlyContinue | Out-Null
New-Item -ItemType Directory -Force -Path "tmp"
Write-Output "Getting latest Tachidesk build files"