Skip to content

Commit

Permalink
fix(scoop-utils): Use correct name of checkurls utility
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash258 committed Apr 24, 2021
1 parent a644111 commit de17e6f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### 0.6-pre3

- **scoop-utils**: Use correct name of `checkurls` utility
- **Completion**: Respect `SCOOP_CACHE` environment for `cache rm` completion
- **scoop-cache**: Allow multiple apps to be passed as argument
- **scoop-(un)hold**: Detect and show error when global option is missing for globally installed application
Expand Down
2 changes: 1 addition & 1 deletion libexec/scoop-utils.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ $Utility = $rem[0]
$VALID_UTILITIES = @(
'auto-pr'
'checkhashes'
'checkurl'
'checkurls'
'checkver'
'describe'
'format'
Expand Down
2 changes: 1 addition & 1 deletion supporting/completion/Scoop-Completion.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ $script:SCOOP_SUB_COMMANDS = @{
'bucket' = 'add known list rm'
'cache' = 'rm show'
'config' = 'rm show'
'utils' = 'auto-pr checkhashes checkurl checkver describe format missing-checkver'
'utils' = 'auto-pr checkhashes checkurls checkver describe format missing-checkver'
}
$script:SCOOP_SHORT_PARAMETERS = @{
'cleanup' = 'g k'
Expand Down
2 changes: 1 addition & 1 deletion supporting/completion/scoop.lua
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ local scoopParser = parser({
'-q', '--quiet',
'-h', '--help'
):loop(1),
'utils' .. parser({'auto-pr', 'checkhashes', 'checkurl', 'checkver', 'describe', 'format', 'missing-checkver'},
'utils' .. parser({'auto-pr', 'checkhashes', 'checkurls', 'checkver', 'describe', 'format', 'missing-checkver'},
'--additional-options',
'-b', '--bucketdir',
'-h', '--help'
Expand Down

0 comments on commit de17e6f

Please sign in to comment.