From e77cbd5d23977707948c63a060dc997d638f672f Mon Sep 17 00:00:00 2001 From: Raymond Piller Date: Wed, 11 Jan 2023 17:37:01 -0600 Subject: [PATCH] Fixed invalid hyphen --- PSRedstone/PSRedstone.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PSRedstone/PSRedstone.psm1 b/PSRedstone/PSRedstone.psm1 index b0eb3c2..90ce823 100644 --- a/PSRedstone/PSRedstone.psm1 +++ b/PSRedstone/PSRedstone.psm1 @@ -28,7 +28,7 @@ if ((New-Object System.Security.Principal.WindowsPrincipal([System.Security.Prin } Write-Debug ('Version Used: {0}' -f ($versionUsed | ConvertTo-Json)) if (-not (Test-Path $versionUsed.LiteralPath)) { - New-Item -Path $versionUsed.LiteralPath –Force + New-Item -Path $versionUsed.LiteralPath -Force } Set-ItemProperty @versionUsed }