From d7263784e35d53fad91ad9621da3fe073087cdca Mon Sep 17 00:00:00 2001 From: Couleur <82747632+couleurm@users.noreply.github.com> Date: Sun, 28 Jan 2024 20:42:04 +0100 Subject: [PATCH] Get-ScoopApp: fix known buckets --- helpers/Get-ScoopApp.ps1 | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/helpers/Get-ScoopApp.ps1 b/helpers/Get-ScoopApp.ps1 index 1548a4a..ae9a794 100644 --- a/helpers/Get-ScoopApp.ps1 +++ b/helpers/Get-ScoopApp.ps1 @@ -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') @@ -78,6 +78,7 @@ function Get-ScoopApp { } } + # Wait-Debugger scoop install $App if ($LASTEXITCODE -ne 0){ $script:FailedToInstall += $App