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.
13 lines
424 B
Bash
13 lines
424 B
Bash
#!/bin/bash
|
|
#
|
|
# This script assumes a linux environment
|
|
|
|
echo "*** µMatrix(Chromium): Creating package"
|
|
echo "*** µMatrix(Chromium): Copying files"
|
|
mkdir -p ./dist/uMatrix.chromium
|
|
cp -R ./src/* ./dist/uMatrix.chromium/
|
|
cp -R ./tools/_locales ./dist/uMatrix.chromium/
|
|
cp -R ./assets ./dist/uMatrix.chromium/
|
|
cp ./meta/chromium/* ./dist/uMatrix.chromium/
|
|
echo "*** µMatrix(Chromium): Package done."
|