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.
15 lines
365 B
Bash
15 lines
365 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 ./src/* $DES
|
|
cp -R ./tools/_locales $DES
|
|
cp -R ./assets $DES
|
|
cp ./meta/chromium/* $DES
|
|
echo "*** µMatrix(Chromium): Package done."
|