Merge pull request #494 from sir-ragna/patch-1

Don't create 'null' files on Windows
This commit is contained in:
RustDesk 2025-02-15 09:16:12 +08:00 committed by GitHub
commit 8312506fa9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -89,7 +89,7 @@ if ($rdver -eq $RustDeskOnGitHub.Version)
if (!(Test-Path C:\Temp))
{
New-Item -ItemType Directory -Force -Path C:\Temp > null
New-Item -ItemType Directory -Force -Path C:\Temp | Out-Null
}
cd C:\Temp