From 0a3fd4c5bcfcb2bb2f275c74512457dc386e6cbf Mon Sep 17 00:00:00 2001 From: Raymond Piller Date: Thu, 12 Jan 2023 09:29:28 -0600 Subject: [PATCH] Fixed Hyphen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `–Force` to `-Force` --- PSWriteLog/PSWriteLog.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PSWriteLog/PSWriteLog.psm1 b/PSWriteLog/PSWriteLog.psm1 index 77a4acc..304aeeb 100644 --- a/PSWriteLog/PSWriteLog.psm1 +++ b/PSWriteLog/PSWriteLog.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 }