mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 04:11:14 +00:00
aa0d113de3
I accedintally committed ./scripts in 99be44ca25
13 lines
253 B
Bash
Executable file
13 lines
253 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
$SCRIPT_DIR/update-syncthing.bash "$2"
|
|
$SCRIPT_DIR/check-version.bash "$1"
|
|
$SCRIPT_DIR/pull-translations.bash
|
|
$SCRIPT_DIR/bump-version.bash "$1"
|
|
|
|
echo "
|
|
Update ready.
|
|
"
|