From cc6838ec9730532b07fe0b40dd45963bf1e83a92 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Tue, 21 Mar 2023 04:32:37 +0300 Subject: [PATCH] scripts: gha: psvita: try to fix vitaGL dependency fetching --- scripts/gha/deps_psvita.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/gha/deps_psvita.sh b/scripts/gha/deps_psvita.sh index 69737a3d..35795a36 100644 --- a/scripts/gha/deps_psvita.sh +++ b/scripts/gha/deps_psvita.sh @@ -26,7 +26,10 @@ popd echo "Downloading vitaGL..." -git clone https://github.com/Rinnegatamante/vitaGL.git -b "$VITAGL_SRCREV" --depth=1 || exit 1 +git clone https://github.com/Rinnegatamante/vitaGL.git || exit 1 +pushd vitaGL +git checkout $VITAGL_SRCREV || exit 1 +popd echo "Downloading vitaGL fork of SDL2..."