mirror of
https://github.com/opentx/opentx.git
synced 2025-07-15 20:35:17 +03:00
15 lines
246 B
Bash
Executable file
15 lines
246 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# stops on first error
|
|
set -e
|
|
|
|
# make sure we are in the good directory
|
|
cd ~opentx/release-20/
|
|
|
|
# pull the latest changes
|
|
./update-repo.sh
|
|
|
|
# make the stamp
|
|
cd opentx/radio/wizard/
|
|
zip -r /var/www/html/lua-20/wizard.zip *.lua *.bmp
|
|
|