We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7476f2e commit 350e76eCopy full SHA for 350e76e
prepare.ps1
@@ -151,10 +151,8 @@ function ConfigureScoop {
151
# throw "Scoop install failed."
152
# }
153
154
- scoop install ppsspp-dev
155
- if ($LASTEXITCODE -ne 0) {
156
- throw "Scoop install failed."
157
- }
+ #scoop install ppsspp-dev
+
158
159
scoop install rpcs3
160
if ($LASTEXITCODE -ne 0) {
@@ -167,6 +165,13 @@ function ConfigureScoop {
167
165
throw "Scoop install failed."
168
166
}
169
+ scoop bucket rm emulator
+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
175
176
177
function Install-AdditionalSoftware {
0 commit comments