1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-02 02:14:52 +12:00
uMatrix/tools/make-chromium.sh
2014-11-19 23:35:17 -02:00

15 lines
365 B
Bash
Executable file

#!/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."