mirror of
https://github.com/opentx/opentx.git
synced 2025-07-25 17:25:13 +03:00
17 lines
311 B
Bash
Executable file
17 lines
311 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# stops on first error
|
|
set -e
|
|
|
|
# make sure we are in the good directory
|
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
cd $DIR
|
|
source ./version.sh
|
|
|
|
# pull the latest changes
|
|
./update-repo.sh
|
|
|
|
# make the stamp
|
|
cd opentx/radio/wizard/
|
|
zip -r /var/www/html/lua-$version/wizard.zip *.lua *.bmp
|
|
|