mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-01 16:33:06 +01:00
caa8e7d35b
This shell script will copy files commoon to all platform into the package.
21 lines
569 B
Bash
21 lines
569 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# This script assumes a linux environment
|
|
|
|
DES=$1
|
|
|
|
bash ./tools/make-assets.sh $DES
|
|
|
|
cp -R src/css $DES/
|
|
cp -R src/img $DES/
|
|
cp -R src/js $DES/
|
|
cp -R src/lib $DES/
|
|
cp -R src/web_accessible_resources $DES/
|
|
cp -R src/_locales $DES/
|
|
|
|
cp src/*.html $DES/
|
|
cp platform/chromium/*.js $DES/js/
|
|
cp platform/chromium/*.html $DES/
|
|
cp platform/chromium/*.json $DES/
|
|
cp LICENSE.txt $DES/
|