mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-02 00:42:45 +01:00
223815342e
This will make it easier to safely test new versions of assets.json.
44 lines
1.3 KiB
Bash
Executable File
44 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# This script assumes a linux environment
|
|
|
|
set -e
|
|
|
|
DES=$1/assets
|
|
|
|
echo "*** Packaging assets in $DES... "
|
|
|
|
rm -rf $DES
|
|
cp -R ./assets $DES/
|
|
|
|
VERSION=$(cat ./dist/version)
|
|
if [[ "$VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
|
echo "*** Removing $DES/assets.dev.json"
|
|
rm $DES/assets.dev.json
|
|
else
|
|
echo "*** Removing $DES/assets.json"
|
|
rm $DES/assets.json
|
|
fi
|
|
|
|
mkdir $DES/thirdparties
|
|
|
|
ASSETS_MAIN=dist/build/uAssets/main
|
|
ASSETS_PROD=dist/build/uAssets/prod
|
|
|
|
cp -R $ASSETS_MAIN/thirdparties/pgl.yoyo.org $DES/thirdparties/
|
|
cp -R $ASSETS_MAIN/thirdparties/publicsuffix.org $DES/thirdparties/
|
|
cp -R $ASSETS_MAIN/thirdparties/urlhaus-filter $DES/thirdparties/
|
|
|
|
mkdir -p $DES/thirdparties/easylist
|
|
cp $ASSETS_PROD/thirdparties/easylist.txt $DES/thirdparties/easylist/
|
|
cp $ASSETS_PROD/thirdparties/easyprivacy.txt $DES/thirdparties/easylist/
|
|
|
|
mkdir $DES/ublock
|
|
cp $ASSETS_PROD/filters/badlists.txt $DES/ublock/badlists.txt
|
|
cp $ASSETS_PROD/filters/badware.txt $DES/ublock/badware.txt
|
|
cp $ASSETS_PROD/filters/filters.min.txt $DES/ublock/filters.min.txt
|
|
cp $ASSETS_PROD/filters/filters-mobile.txt $DES/ublock/filters-mobile.txt
|
|
cp $ASSETS_PROD/filters/privacy.min.txt $DES/ublock/privacy.min.txt
|
|
cp $ASSETS_PROD/filters/quick-fixes.txt $DES/ublock/quick-fixes.txt
|
|
cp $ASSETS_PROD/filters/unbreak.txt $DES/ublock/unbreak.txt
|