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.
nuTensor/tools/make-chromium.sh

15 lines
365 B
Bash

10 years ago
#!/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
10 years ago
echo "*** µMatrix(Chromium): Package done."