From 97774fe66b4a89335130721e5a19b5b1e2cab61a Mon Sep 17 00:00:00 2001 From: Aaron Sherber Date: Mon, 1 Nov 2021 22:19:52 -0400 Subject: [PATCH] fix(pwsh): fix remove-variable statements --- src/init/omp.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/init/omp.ps1 b/src/init/omp.ps1 index 5242e615..5d8a35b9 100644 --- a/src/init/omp.ps1 +++ b/src/init/omp.ps1 @@ -35,8 +35,8 @@ if (Test-Path $omp_config) { $global:PoshSettings.Theme = (Resolve-Path -Path $omp_config).ProviderPath } -Remove-Variable $omp_value -Confirm:$false -Remove-Variable $omp_config -Confirm:$false +Remove-Variable omp_value -Confirm:$false +Remove-Variable omp_config -Confirm:$false function global:Set-PoshContext {}