rpcs3: 0.0.29-15726-ebf48800e -> 0.0.31-16271-4ecf8ecd0

Also fix the update script.
This commit is contained in:
Zane van Iperen 2024-03-29 21:08:27 +10:00
parent 7d55d624b1
commit e9b79cc33c
No known key found for this signature in database
GPG Key ID: 68616B2D8AC4DCC5
2 changed files with 5 additions and 5 deletions

View File

@ -32,10 +32,10 @@
let
# Keep these separate so the update script can regex them
rpcs3GitVersion = "15726-ebf48800e";
rpcs3Version = "0.0.29-15726-ebf48800e";
rpcs3Revision = "ebf48800e6bf2569fa0a59974ab2daaeb3a92f23";
rpcs3Hash = "sha256-HJQ+DCZy8lwMCfq0N9StKD8bP1hCBxGMAucbQ9esy/I=";
rpcs3GitVersion = "16271-4ecf8ecd0";
rpcs3Version = "0.0.31-16271-4ecf8ecd0";
rpcs3Revision = "4ecf8ecd06c15f0557e1d9243f31e4c2d7baebe2";
rpcs3Hash = "sha256-y7XLYo1qYYiNE4TXVxfUTCmyGkthpj3IU1gdKTgb8KY=";
inherit (qt6Packages) qtbase qtmultimedia wrapQtAppsHook qtwayland;
in

View File

@ -4,7 +4,7 @@
set -eou pipefail
ROOT="$(dirname "$(readlink -f "$0")")"
if [[ ! "$(basename $ROOT)" == "rpcs3" || ! -f "$ROOT/default.nix" ]]; then
if [[ ! "$(basename $ROOT)" == "rpcs3" || ! -f "$ROOT/package.nix" ]]; then
echo "ERROR: Not in the rpcs3 folder"
exit 1
fi