Skip to content

Commit

Permalink
Update prepare.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
Francommit committed May 17, 2024
1 parent ecdd5b5 commit 7cb18b4
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions prepare.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,9 @@ function ConfigureScoop {
# scoop install ppsspp
scoop install rpcs3

try {
scoop install yuzu
}
catch {
Write-Output "ERROR: Failed to install yuzu"
throw "Failed to install yuzu"
scoop install yuzu
if ($LASTEXITCODE -ne 0) {
throw "Installation of $yuzu failed."
}

}
Expand Down

0 comments on commit 7cb18b4

Please sign in to comment.