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

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