mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
Add shell script to copy common files
This shell script will copy files commoon to all platform into the package.
This commit is contained in:
parent
152cea2dfe
commit
caa8e7d35b
1 changed files with 20 additions and 0 deletions
20
tools/copy-common-files.sh
Normal file
20
tools/copy-common-files.sh
Normal file
|
@ -0,0 +1,20 @@
|
|||
#!/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/
|
Loading…
Reference in a new issue