Skip to content

Commit

Permalink
Remarks Ryan
Browse files Browse the repository at this point in the history
  • Loading branch information
Gijsreyn committed Nov 13, 2024
1 parent 0bb730e commit 081fc8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/Microsoft.VSCode.Dsc/Microsoft.VSCode.Dsc.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ function Invoke-VSCode {
[string]$Command
)

$stdErrTempFile = [System.IO.Path]::GetTempPath() + (New-Guid).Guid
$stdOutTempFile = [System.IO.Path]::GetTempPath() + (New-Guid).Guid
$stdErrTempFile = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath (New-Guid).Guid
$stdOutTempFile = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath (New-Guid).Guid
$invocationSuccess = $true

$processParams = @{
Expand Down

0 comments on commit 081fc8d

Please sign in to comment.