Browse Source
Fix fetching of assets at build time
master
1.4.3b0
Raymond Hill
12 months ago
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with
7 additions and
1 deletions
-
tools/make-assets.sh
|
|
@ -14,11 +14,14 @@ cp ./assets/assets.json $DES/ |
|
|
|
if [ -n "${TRAVIS_TAG}" ]; then |
|
|
|
pushd .. > /dev/null |
|
|
|
git clone --depth 1 https://github.com/uBlockOrigin/uAssets.git |
|
|
|
git checkout 84dc2761abb4193bb34290aa6d90266610f735f6 |
|
|
|
popd > /dev/null |
|
|
|
fi |
|
|
|
|
|
|
|
mkdir $DES/thirdparties |
|
|
|
cp -R ../uAssets/thirdparties/hosts-file.net $DES/thirdparties/ |
|
|
|
pushd ../uAssets |
|
|
|
git checkout 84dc2761abb4193bb34290aa6d90266610f735f6 |
|
|
|
popd |
|
|
|
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/ |
|
|
@ -27,5 +30,8 @@ cp -R ../uAssets/thirdparties/winhelp2002.mvps.org $DES/thirdparties/ |
|
|
|
cp -R ../uAssets/thirdparties/www.malwaredomainlist.com $DES/thirdparties/ |
|
|
|
mkdir $DES/umatrix |
|
|
|
cp -R ../uAssets/recipes/* $DES/umatrix/ |
|
|
|
pushd ../uAssets |
|
|
|
git checkout master |
|
|
|
popd |
|
|
|
|
|
|
|
echo "done." |
|
|
|