diff --git a/CHANGELOG.md b/CHANGELOG.md index 82264e6377..8b6c2957d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -65,7 +65,6 @@ - **scoop-update:** Check for running process before wasting time on download ([#5799](https://github.com/ScoopInstaller/Scoop/issues/5799)) - **decompress:** Disable progress bar to improve `Expand-Archive` performance ([#5410](https://github.com/ScoopInstaller/Scoop/issues/5410)) - **shim:** Update kiennq-shim to v3.1.1 ([#5841](https://github.com/ScoopInstaller/Scoop/issues/5841), [#5847](https://github.com/ScoopInstaller/Scoop/issues/5847)) -- **scoop-search:** Use SQLite for caching apps to speed up local search ([#5851](https://github.com/ScoopInstaller/Scoop/issues/5851)) ### Code Refactoring diff --git a/lib/core.ps1 b/lib/core.ps1 index 330583fdeb..f86f9956c9 100644 --- a/lib/core.ps1 +++ b/lib/core.ps1 @@ -145,9 +145,6 @@ function set_config { $scoopConfig.PSObject.Properties.Remove($name) } - # Initialize config's change - Complete-ConfigChange -Name $name -Value $value - # Save config with UTF8NoBOM encoding ConvertTo-Json $scoopConfig | Out-UTF8File -FilePath $configFile return $scoopConfig