Skip to content

Commit

Permalink
Try scoop catching
Browse files Browse the repository at this point in the history
  • Loading branch information
Francommit committed May 17, 2024
1 parent f72d611 commit e52b24e
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions prepare.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,20 @@ function ConfigureScoop {
scoop bucket add main

Write-Host "INFO: Adding scoop bucket"
scoop bucket add emulators https://github.com/borger/scoop-emulators.git
Write-Host "INFO: Installing Citra"
scoop install citra
scoop install ppsspp-dev
scoop install yuzu
# scoop bucket add emulators https://github.com/hermanjustnu/scoop-emulators.git
# Write-Host "INFO: Installing Citra"
# scoop install citra-canary

scoop bucket add emulators https://github.com/hermanjustnu/scoop-emulators.git
scoop install ppsspp
scoop install rpcs3

try {
scoop install yuzu
}
catch {
Write-Output "ERROR: Failed to install yuzu"
}

}

Expand Down

0 comments on commit e52b24e

Please sign in to comment.