Update main.sh

This commit is contained in:
Ward Nakchbandi (Cosmic Fusion) 2023-11-27 21:39:19 +03:00 committed by GitHub
parent 7bff03a0d2
commit 069275d3a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
set -e
# Clone Upstream
git clone https://gitlab.freedesktop.org/mesa/mesa -b mesa-23.2.1
git clone https://gitlab.freedesktop.org/mesa/mesa -b mesa-23.3.0-rc5
cp -rvf ./debian ./mesa/
cd ./mesa
for i in $(cat ../patches/series) ; do echo "Applying Patch: $i" && patch -Np1 -i ../patches/$i || bash -c "echo "Applying Patch $i Failed!" && exit 2"; done