blob: 88e268d68c00533a190163db02516866878a0abc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env bash
#
# This script assumes a linux environment
set -e
DES=dist/build/uAssets
echo "*** Pull assets from remote into $DES"
git clone --depth 1 --branch master https://github.com/uBlockOrigin/uAssets $DES/main
git clone --depth 1 --branch gh-pages https://github.com/uBlockOrigin/uAssets $DES/prod
|