Add missing Pop-Location statement

This commit is contained in:
Manuel Thalmann 2023-07-02 18:45:38 +02:00
parent e3061750a3
commit a736a62609

View file

@ -24,5 +24,6 @@ $null = New-Module {
Write-Information "Renaming user configuration to $configName";
Push-Location $path;
Rename-Item $genericConfigName $configName;
Pop-Location;
}
}