Skip to content

Commit f8e03da

Browse files
committed
Update prepare.ps1
1 parent 5dbed61 commit f8e03da

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

Diff for: prepare.ps1

+17-7
Original file line numberDiff line numberDiff line change
@@ -143,17 +143,27 @@ function ConfigureScoop {
143143
scoop bucket add main
144144

145145
Write-Host "INFO: Adding scoop bucket"
146-
# Write-Host "INFO: Installing Citra"
147-
# scoop install citra-canary
148-
149-
# scoop bucket add emulators https://github.com/borger/scoop-emulators.git
150146
scoop bucket add emulators https://github.com/hermanjustnu/scoop-emulators.git
151-
# scoop install ppsspp
147+
148+
scoop install citra-canary
149+
if ($LASTEXITCODE -ne 0) {
150+
throw "Scoop install failed."
151+
}
152+
153+
scoop install ppsspp-dev
154+
if ($LASTEXITCODE -ne 0) {
155+
throw "Scoop install failed."
156+
}
157+
152158
scoop install rpcs3
159+
if ($LASTEXITCODE -ne 0) {
160+
throw "Scoop install failed."
161+
}
162+
# scoop bucket add emulators https://github.com/borger/scoop-emulators.git
153163

154-
scoop install yuzu
164+
scoop install ryujinx.json
155165
if ($LASTEXITCODE -ne 0) {
156-
throw "Installation of $yuzu failed."
166+
throw "Scoop install failed."
157167
}
158168

159169
}

0 commit comments

Comments
 (0)