1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-05 11:37:01 +02:00

[mv3] Use specific commit URL to pick uBO repo version

This commit is contained in:
Raymond Hill 2023-08-19 08:50:20 -04:00
parent f216dc3c4b
commit bcc0803bb5
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
2 changed files with 11 additions and 4 deletions

View File

@ -1 +1 @@
1.51.1b19
https://github.com/gorhill/uBlock/tree/f216dc3c4b86518a8f86aa0184b466549873cac5

View File

@ -44,12 +44,19 @@ mkdir -p $DES/css/fonts
mkdir -p $DES/js
mkdir -p $DES/img
if [ "$UBO_VERSION" != "local" ]; then
UBO_VERSION=$(cat platform/mv3/ubo-version)
if [ "$UBO_VERSION" != "HEAD" ]; then
cp platform/mv3/ubo-version $DES/
UBO_VERSION_URL=$(cat platform/mv3/ubo-version)
UBO_VERSION="${UBO_VERSION_URL: -40}"
UBO_REPO="https://github.com/gorhill/uBlock.git"
UBO_DIR=$(mktemp -d)
echo "*** uBOLite.mv3: Fetching uBO $UBO_VERSION from $UBO_REPO into $UBO_DIR"
git clone -q --depth 1 --branch "$UBO_VERSION" "$UBO_REPO" "$UBO_DIR"
cd "$UBO_DIR"
git init -q
git remote add origin "https://github.com/gorhill/uBlock.git"
git fetch --depth 1 origin "$UBO_VERSION"
git checkout -q FETCH_HEAD
cd ..
else
UBO_DIR=.
fi