Skip to content

Commit 350e76e

Browse files
authored
Update prepare.ps1
1 parent 7476f2e commit 350e76e

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

Diff for: prepare.ps1

+9-4
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,8 @@ function ConfigureScoop {
151151
# throw "Scoop install failed."
152152
# }
153153

154-
scoop install ppsspp-dev
155-
if ($LASTEXITCODE -ne 0) {
156-
throw "Scoop install failed."
157-
}
154+
#scoop install ppsspp-dev
155+
158156

159157
scoop install rpcs3
160158
if ($LASTEXITCODE -ne 0) {
@@ -167,6 +165,13 @@ function ConfigureScoop {
167165
throw "Scoop install failed."
168166
}
169167

168+
scoop bucket rm emulator
169+
scoop bucket add emulators https://github.com/borger/scoop-emulators.git
170+
scoop install ppsspp
171+
if ($LASTEXITCODE -ne 0) {
172+
throw "Scoop install failed."
173+
}
174+
170175
}
171176

172177
function Install-AdditionalSoftware {

0 commit comments

Comments
 (0)