1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-02 09:09:38 +02:00
uBlock/tools/make-assets.sh

30 lines
907 B
Bash
Raw Normal View History

#!/usr/bin/env bash
#
# This script assumes a linux environment
DES=$1/assets
2016-04-03 23:45:02 +02:00
printf "*** Packaging assets in $DES... "
2016-04-03 20:25:56 +02:00
if [ -n "${TRAVIS_TAG}" ]; then
pushd .. > /dev/null
2016-04-03 20:25:56 +02:00
git clone https://github.com/uBlockOrigin/uAssets.git
popd > /dev/null
2016-04-03 20:25:56 +02:00
fi
rm -rf $DES
mkdir $DES
2017-01-18 19:36:24 +01:00
cp ./assets/assets.json $DES/
mkdir $DES/thirdparties
cp -R ../uAssets/thirdparties/easylist-downloads.adblockplus.org $DES/thirdparties/
cp -R ../uAssets/thirdparties/mirror1.malwaredomains.com $DES/thirdparties/
cp -R ../uAssets/thirdparties/pgl.yoyo.org $DES/thirdparties/
cp -R ../uAssets/thirdparties/publicsuffix.org $DES/thirdparties/
cp -R ../uAssets/thirdparties/www.malwaredomainlist.com $DES/thirdparties/
mkdir $DES/ublock
cp -R ../uAssets/filters/* $DES/ublock/
2016-04-03 23:45:02 +02:00
echo "done."