You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
365 B

10 years ago
10 years ago
  1. #!/bin/bash
  2. #
  3. # This script assumes a linux environment
  4. echo "*** µMatrix(Chromium): Creating package"
  5. echo "*** µMatrix(Chromium): Copying files"
  6. DES=./dist/uMatrix.chromium
  7. rm -rf $DES
  8. mkdir -p $DES
  9. cp -R ./src/* $DES
  10. cp -R ./tools/_locales $DES
  11. cp -R ./assets $DES
  12. cp ./meta/chromium/* $DES
  13. echo "*** µMatrix(Chromium): Package done."