You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
830 B
Bash
29 lines
830 B
Bash
#!/bin/bash
|
|
#
|
|
# This script assumes a linux environment
|
|
|
|
echo "*** µMatrix(Chromium): Creating package"
|
|
echo "*** µMatrix(Chromium): Copying files"
|
|
|
|
DES=./dist/uMatrix.chromium
|
|
rm -rf $DES
|
|
mkdir -p $DES
|
|
|
|
cp -R ./assets $DES/
|
|
cp -R ./src/* $DES/
|
|
cp -R $DES/_locales/nb $DES/_locales/no # Chrome store quirk
|
|
cp ./platform/chromium/*.html $DES/
|
|
cp ./platform/chromium/*.js $DES/js/
|
|
cp -R ./platform/chromium/img/* $DES/img/
|
|
cp ./platform/chromium/manifest.json $DES/
|
|
cp LICENSE $DES/
|
|
|
|
if [ "$1" = all ]; then
|
|
echo "*** µMatrix.chromium: Creating package..."
|
|
pushd $(dirname $DES/)
|
|
zip uMatrix.chromium.zip -qr $(basename $DES/)/*
|
|
popd
|
|
fi
|
|
|
|
echo "*** µMatrix(Chromium): Package done."
|