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.
9 lines
233 B
9 lines
233 B
./build.sh
|
|
aarch64-linux-gnu-strip ./build/app/*
|
|
mkdir -p /tmp/app/
|
|
rm -rf /tmp/app/*
|
|
cp ./build/app/* /tmp/app/
|
|
cp -rf html /tmp/app/
|
|
tar -czvf /tmp/app.tar.gz -C /tmp app
|
|
rm -rf /tmp/app
|
|
echo "Release package is in /tmp/app.tar.gz"
|