mirror of
https://github.com/opentx/opentx.git
synced 2025-07-16 04:45:17 +03:00
17 lines
285 B
Bash
Executable file
17 lines
285 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# stops on first error
|
|
set -e
|
|
set -x
|
|
|
|
# make sure we are in the good directory
|
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
cd ${DIR}
|
|
source ./version.sh
|
|
|
|
# release all components
|
|
./release-companion.sh
|
|
./release-voices.sh
|
|
./release-lua.sh
|
|
./release-firmware.sh
|
|
|