From 5f091bb6abed878271e2321cd784f34436c677bd Mon Sep 17 00:00:00 2001 From: undergroundwires Date: Mon, 6 Dec 2021 20:07:16 +0100 Subject: [PATCH] Fix double backlashes in Windows vscode scripts --- package-lock.json | 2 +- src/application/collections/windows.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0f2b2641..bb359435 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6,7 +6,7 @@ "packages": { "": { "name": "privacy.sexy", - "version": "0.11.1", + "version": "0.11.2", "hasInstallScript": true, "dependencies": { "@fortawesome/fontawesome-svg-core": "^1.2.36", diff --git a/src/application/collections/windows.yaml b/src/application/collections/windows.yaml index c96eb6c9..6442510b 100644 --- a/src/application/collections/windows.yaml +++ b/src/application/collections/windows.yaml @@ -6410,9 +6410,9 @@ functions: function: RunPowerShell parameters: code: |- - $jsonfile = \"$env:APPDATA\Code\User\settings.json\" + $jsonfile = "$env:APPDATA\Code\User\settings.json" if (!(Test-Path $jsonfile -PathType Leaf)) { - Write-Host \"No updates. Settings file was not at $jsonfile\" + Write-Host "No updates. Settings file was not at $jsonfile" exit 0 } $json = Get-Content $jsonfile | Out-String | ConvertFrom-Json