mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2025-06-25 20:21:22 +02:00
Merge pull request #494 from sir-ragna/patch-1
Don't create 'null' files on Windows
This commit is contained in:
commit
8312506fa9
@ -89,7 +89,7 @@ if ($rdver -eq $RustDeskOnGitHub.Version)
|
|||||||
|
|
||||||
if (!(Test-Path C:\Temp))
|
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
|
cd C:\Temp
|
||||||
|
Loading…
x
Reference in New Issue
Block a user