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 7476f2e commit 350e76e
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions prepare.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,8 @@ function ConfigureScoop {
# throw "Scoop install failed."
# }

scoop install ppsspp-dev
if ($LASTEXITCODE -ne 0) {
throw "Scoop install failed."
}
#scoop install ppsspp-dev


scoop install rpcs3
if ($LASTEXITCODE -ne 0) {
Expand All @@ -167,6 +165,13 @@ function ConfigureScoop {
throw "Scoop install failed."
}

scoop bucket rm emulator
scoop bucket add emulators https://github.com/borger/scoop-emulators.git
scoop install ppsspp
if ($LASTEXITCODE -ne 0) {
throw "Scoop install failed."
}

}

function Install-AdditionalSoftware {
Expand Down

0 comments on commit 350e76e

Please sign in to comment.