fix(scoop-checkup): Don't throw 7zip error when external 7zip is used (#5703)

* fix(scoop-checkup): Don't throw 7zip error when external 7zip is used

* Update CHANGELOG.md
This commit is contained in:
Rashil Gandhi
2023-10-26 14:13:25 +05:30
committed by GitHub
parent 7e81e49152
commit fb3169629f
2 changed files with 2 additions and 1 deletions

View File

@@ -39,6 +39,7 @@
- **shim:** Avoid unexpected output of `list` subcommand ([#5681](https://github.com/ScoopInstaller/Scoop/issues/5681))
- **scoop-reset:** Don't abort when multiple apps are passed and an app is running ([#5687](https://github.com/ScoopInstaller/Scoop/issues/5687))
- **core:** Do not call `scoop` externally from inside the code ([#5695](https://github.com/ScoopInstaller/Scoop/issues/5695))
- **scoop-checkup:** Don't throw 7zip error when external 7zip is used ([#5703](https://github.com/ScoopInstaller/Scoop/issues/5703))
### Performance Improvements

View File

@@ -19,7 +19,7 @@ $issues += !(check_main_bucket)
$issues += !(check_long_paths)
$issues += !(Get-WindowsDeveloperModeStatus)
if (!(Test-HelperInstalled -Helper 7zip)) {
if (!(Test-HelperInstalled -Helper 7zip) -and !(get_config USE_EXTERNAL_7ZIP)) {
warn "'7-Zip' is not installed! It's required for unpacking most programs. Please Run 'scoop install 7zip' or 'scoop install 7zip-zstd'."
$issues++
}