Skip to content

Commit

Permalink
Get-ScoopApp: fix known buckets
Browse files Browse the repository at this point in the history
  • Loading branch information
couleurm committed Jan 28, 2024
1 parent 9724084 commit d726378
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions helpers/Get-ScoopApp.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ function Get-ScoopApp {

$Repos = @{

main = @{org = 'ScoopInstaller';repo = 'main';branch = 'master'}
extras = @{org = 'ScoopInstaller';repo = 'extras';branch = 'master'}
utils = @{org = 'couleur-tweak-tips';repo = 'utils';branch = 'main'}
nirsoft = @{org = 'kodybrown' ;repo = 'scoop-nirsoft';branch = 'master'}
games = @{org = 'ScoopInstaller';repo = 'games';branch = 'master'}
'nerd-fonts' = @{org = 'ScoopInstaller';repo = 'nerd-fonts';branch = 'master'}
versions = @{org = 'ScoopInstaller';repo = 'versions';branch = 'master'}
java = @{org = 'ScoopInstaller';repo = 'java';branch = 'master'}
main = @{org = 'ScoopInstaller' ;repo = 'main' ;branch = 'master'}
extras = @{org = 'ScoopInstaller' ;repo = 'extras' ;branch = 'master'}
utils = @{org = 'couleur-tweak-tips' ;repo = 'utils' ;branch = 'main' }
nirsoft = @{org = 'kodybrown' ;repo = 'scoop-nirsoft' ;branch = 'master'}
'games' = @{org = 'Calinou' ;repo = 'scoop-games' ;branch = 'master'}
'nerd-fonts' = @{org = 'matthewjberger' ;repo = 'scoop-nerd-fonts' ;branch = 'master'}
versions = @{org = 'ScoopInstaller' ;repo = 'versions' ;branch = 'master'}
java = @{org = 'ScoopInstaller' ;repo = 'java' ;branch = 'master'}
}
$RepoNames = $Repos.Keys -Split('\r?\n')

Expand Down Expand Up @@ -78,6 +78,7 @@ function Get-ScoopApp {
}

}
# Wait-Debugger
scoop install $App
if ($LASTEXITCODE -ne 0){
$script:FailedToInstall += $App
Expand Down

0 comments on commit d726378

Please sign in to comment.