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.

7 lines
195 B

11 months ago
  1. ./build.sh
  2. mkdir -p /tmp/app/
  3. rm -rf /tmp/app/*
  4. cp ./build/app/* /tmp/app/
  5. cp -rf html /tmp/app/
  6. tar -czvf /tmp/app.tar.gz -C /tmp app
  7. rm -rf /tmp/app
  8. echo "Release package is in /tmp/app.tar.gz"