Skip to content

Commit

Permalink
Update prepare.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
Francommit authored May 17, 2024
1 parent 19477f3 commit 6ca8246
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions prepare.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -143,20 +143,17 @@ function ConfigureScoop {
scoop bucket add main

Write-Host "INFO: Adding scoop bucket"
scoop bucket add emulators https://github.com/hermanjustnu/scoop-emulators.git
# scoop bucket add emulators https://github.com/hermanjustnu/scoop-emulators.git

# TO-DO: Find alternative 3DS emu
# scoop install citra-canary
# if ($LASTEXITCODE -ne 0) {
# throw "Scoop install failed."
# }

scoop install ryujinx.json
if ($LASTEXITCODE -ne 0) {
throw "Scoop install failed."
}


scoop bucket rm emulator
# scoop bucket rm emulator
scoop bucket add emulators https://github.com/borger/scoop-emulators.git

scoop install ppsspp
Expand All @@ -169,6 +166,11 @@ function ConfigureScoop {
throw "Scoop install failed."
}

scoop install ryujinx.json
if ($LASTEXITCODE -ne 0) {
throw "Scoop install failed."
}

}

function Install-AdditionalSoftware {
Expand Down

0 comments on commit 6ca8246

Please sign in to comment.