gitextract_ros1r64f/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── Bug_report.md │ │ ├── Feature_request.md │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── CHANGELOG.md ├── LICENSE ├── PSScriptAnalyzerSettings.psd1 ├── README.md ├── appveyor.yml ├── bin/ │ ├── auto-pr.ps1 │ ├── checkhashes.ps1 │ ├── checkurls.ps1 │ ├── checkver.ps1 │ ├── describe.ps1 │ ├── formatjson.ps1 │ ├── install.ps1 │ ├── missing-checkver.ps1 │ ├── refresh.ps1 │ ├── scoop.ps1 │ ├── test.ps1 │ └── uninstall.ps1 ├── buckets.json ├── lib/ │ ├── autoupdate.ps1 │ ├── buckets.ps1 │ ├── commands.ps1 │ ├── core.ps1 │ ├── database.ps1 │ ├── decompress.ps1 │ ├── depends.ps1 │ ├── description.ps1 │ ├── diagnostic.ps1 │ ├── download.ps1 │ ├── getopt.ps1 │ ├── help.ps1 │ ├── install.ps1 │ ├── json.ps1 │ ├── manifest.ps1 │ ├── psmodules.ps1 │ ├── shortcuts.ps1 │ ├── system.ps1 │ └── versions.ps1 ├── libexec/ │ ├── scoop-alias.ps1 │ ├── scoop-bucket.ps1 │ ├── scoop-cache.ps1 │ ├── scoop-cat.ps1 │ ├── scoop-checkup.ps1 │ ├── scoop-cleanup.ps1 │ ├── scoop-config.ps1 │ ├── scoop-create.ps1 │ ├── scoop-depends.ps1 │ ├── scoop-download.ps1 │ ├── scoop-export.ps1 │ ├── scoop-help.ps1 │ ├── scoop-hold.ps1 │ ├── scoop-home.ps1 │ ├── scoop-import.ps1 │ ├── scoop-info.ps1 │ ├── scoop-install.ps1 │ ├── scoop-list.ps1 │ ├── scoop-prefix.ps1 │ ├── scoop-reset.ps1 │ ├── scoop-search.ps1 │ ├── scoop-shim.ps1 │ ├── scoop-status.ps1 │ ├── scoop-unhold.ps1 │ ├── scoop-uninstall.ps1 │ ├── scoop-update.ps1 │ ├── scoop-virustotal.ps1 │ └── scoop-which.ps1 ├── schema.json ├── supporting/ │ ├── formats/ │ │ └── ScoopTypes.Format.ps1xml │ ├── shims/ │ │ ├── 71/ │ │ │ ├── checksum.sha256 │ │ │ └── checksum.sha512 │ │ ├── kiennq/ │ │ │ ├── checksum.sha256 │ │ │ ├── checksum.sha512 │ │ │ └── version.txt │ │ └── scoopcs/ │ │ ├── checksum.sha256 │ │ ├── checksum.sha512 │ │ └── version.txt │ └── validator/ │ ├── .gitignore │ ├── Scoop.Validator.cs │ ├── bin/ │ │ ├── checksum.sha256 │ │ └── checksum.sha512 │ ├── build.ps1 │ ├── install.ps1 │ ├── packages.config │ ├── update.ps1 │ ├── validator.cs │ └── validator.csproj └── test/ ├── Import-Bucket-Tests.ps1 ├── Scoop-00File.Tests.ps1 ├── Scoop-00Linting.Tests.ps1 ├── Scoop-Commands.Tests.ps1 ├── Scoop-Config.Tests.ps1 ├── Scoop-Core.Tests.ps1 ├── Scoop-Decompress.Tests.ps1 ├── Scoop-Depends.Tests.ps1 ├── Scoop-Download.Tests.ps1 ├── Scoop-GetOpts.Tests.ps1 ├── Scoop-Install.Tests.ps1 ├── Scoop-Manifest.Tests.ps1 ├── Scoop-TestLib.ps1 ├── Scoop-Versions.Tests.ps1 ├── bin/ │ ├── init.ps1 │ └── test.ps1 └── fixtures/ ├── format/ │ ├── formatted/ │ │ ├── 1-easy.json │ │ ├── 2-whitespaces-mess.json │ │ ├── 3-array-with-single-and-multi.json │ │ └── 4-script-block.json │ └── unformatted/ │ ├── 1-easy.json │ ├── 2-whitespaces-mess.json │ ├── 3-array-with-single-and-multi.json │ └── 4-script-block.json ├── is_directory/ │ ├── i_am_a_directory/ │ │ └── .gitkeep │ └── i_am_a_file.txt ├── manifest/ │ ├── broken_schema.json │ ├── broken_wget.json │ ├── invalid_wget.json │ └── wget.json ├── movedir/ │ ├── user/ │ │ └── _tmp/ │ │ ├── subdir/ │ │ │ └── test.txt │ │ └── test.txt │ ├── user with 'quote/ │ │ └── _tmp/ │ │ ├── subdir/ │ │ │ └── test.txt │ │ └── test.txt │ └── user with space/ │ └── _tmp/ │ ├── subdir/ │ │ └── test.txt │ └── test.txt └── shim/ ├── shim-test.ps1 └── user with 'quote/ └── shim-test.ps1