1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-22 12:21:15 +00:00
syncthing-android/scripts/check-version.bash
Simon Frei aa0d113de3
Commit the rest of the build changes
I accedintally committed ./scripts in 99be44ca25
2019-06-27 07:19:40 +02:00

24 lines
570 B
Bash
Executable file

#!/bin/bash
set -e
echo "
Checking Syncthing Version is compatible
-----------------------------
"
NEW_VERSION_NAME=$1
if [[ -z ${NEW_VERSION_NAME} ]]
then
echo "New version name is empty. Please set a new version. Current version: $OLD_VERSION_NAME"
exit 1
fi
cd "syncthing/src/github.com/syncthing/syncthing/"
CURRENT_TAG=$(git describe)
if [ "${NEW_VERSION_NAME#${CURRENT_TAG#v}}" = "${NEW_VERSION_NAME}" ]; then
printf "New version name %s is not compatible with Syncthing version %s\n" \
"$NEW_VERSION_NAME" "$CURRENT_TAG"
exit 1
fi