fix(pwsh): fix remove-variable statements

This commit is contained in:
Aaron Sherber 2021-11-01 22:19:52 -04:00 committed by Jan De Dobbeleer
parent d328c81932
commit 97774fe66b

View file

@ -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 {}