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.

8 lines
233 B

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