From 834e20f1012011c6c4f7426c459afd0cafc7d192 Mon Sep 17 00:00:00 2001 From: Syer10 Date: Thu, 25 Mar 2021 16:44:20 -0400 Subject: [PATCH] Dont error on fail to remove tmp folder --- scripts/SetupWindows.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/SetupWindows.ps1 b/scripts/SetupWindows.ps1 index 3f6f0747..5cdb75c5 100644 --- a/scripts/SetupWindows.ps1 +++ b/scripts/SetupWindows.ps1 @@ -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"