2021-07-31 12:49:32 -06:00
|
|
|
#!/usr/bin/env bash
|
2016-04-03 11:07:46 -06:00
|
|
|
#
|
|
|
|
# This script assumes a linux environment
|
|
|
|
|
2021-07-31 15:34:25 -06:00
|
|
|
set -e
|
|
|
|
|
2016-04-03 11:07:46 -06:00
|
|
|
DES=$1/assets
|
|
|
|
|
2021-07-28 17:40:11 -06:00
|
|
|
echo "*** Packaging assets in $DES... "
|
2016-04-03 12:25:56 -06:00
|
|
|
|
2016-04-03 11:07:46 -06:00
|
|
|
rm -rf $DES
|
2019-07-06 10:36:28 -06:00
|
|
|
cp -R ./assets $DES/
|
2019-02-15 14:18:03 -07:00
|
|
|
|
2023-05-04 17:20:18 -06:00
|
|
|
VERSION=$(cat ./dist/version)
|
|
|
|
if [[ "$VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
|
|
|
echo "*** Removing $DES/assets.dev.json"
|
2024-03-11 16:41:18 -06:00
|
|
|
rm -f $DES/assets.dev.json
|
2023-05-04 17:20:18 -06:00
|
|
|
else
|
|
|
|
echo "*** Removing $DES/assets.json"
|
2024-03-11 16:41:18 -06:00
|
|
|
rm -f $DES/assets.json
|
2023-05-04 17:20:18 -06:00
|
|
|
fi
|
|
|
|
|
2016-04-03 11:07:46 -06:00
|
|
|
mkdir $DES/thirdparties
|
2021-07-28 17:40:11 -06:00
|
|
|
|
2022-11-14 07:50:53 -07:00
|
|
|
ASSETS_MAIN=dist/build/uAssets/main
|
|
|
|
ASSETS_PROD=dist/build/uAssets/prod
|
2021-07-28 17:40:11 -06:00
|
|
|
|
2022-11-14 07:50:53 -07:00
|
|
|
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
|
2023-04-27 11:22:15 -06:00
|
|
|
cp $ASSETS_PROD/thirdparties/easylist.txt $DES/thirdparties/easylist/
|
|
|
|
cp $ASSETS_PROD/thirdparties/easyprivacy.txt $DES/thirdparties/easylist/
|
2016-04-03 11:07:46 -06:00
|
|
|
|
|
|
|
mkdir $DES/ublock
|
2023-04-28 15:02:51 -06:00
|
|
|
cp $ASSETS_PROD/filters/badlists.txt $DES/ublock/badlists.txt
|
2023-10-29 21:38:54 -06:00
|
|
|
cp $ASSETS_PROD/filters/badware.min.txt $DES/ublock/badware.min.txt
|
2023-04-28 15:02:51 -06:00
|
|
|
cp $ASSETS_PROD/filters/filters.min.txt $DES/ublock/filters.min.txt
|
|
|
|
cp $ASSETS_PROD/filters/privacy.min.txt $DES/ublock/privacy.min.txt
|
2023-10-29 21:38:54 -06:00
|
|
|
cp $ASSETS_PROD/filters/quick-fixes.min.txt $DES/ublock/quick-fixes.min.txt
|
|
|
|
cp $ASSETS_PROD/filters/unbreak.min.txt $DES/ublock/unbreak.min.txt
|