mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2026-09-13 17:06:07 +00:00
- Closes #2531 Actual behaviour is kept and nothing is broken. If external bucket contains `bucket` folder it's used for finding manifests. How to test: 1. Create folder `TestBucket` in `$env:SCOOP\buckets` 1. Create manifest `CosiTest.json` with hello manifest # Or some other name which definetely cannot exists❗ 1. execute `.\bin\scoop.ps1 install CosiTest` within this branch 1. Installing done 1. `.\bin\scoop.ps1 uninstall CosiTest` 1. Create folder `bucket` in `TestBucket` directory and copy CosiTest.json as `bucket\CosiTestBucket.json` 1. `.\bin\scoop.ps1 install CosiTest` 1. Installation will failed with `Couldn't find manifest for 'CosiTest'.` 1. `.\bin\scoop.ps1 install CosiTestBucket` 1. Installation Done 1. `.\bin\scoop.ps1 uninstall CosiTestBucket` 1. Unnstallation Done