diff options
Diffstat (limited to '')
-rwxr-xr-x | tools/pull-assets.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/pull-assets.sh b/tools/pull-assets.sh new file mode 100755 index 0000000..88e268d --- /dev/null +++ b/tools/pull-assets.sh @@ -0,0 +1,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 |