mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 20:31:16 +00:00
aa0d113de3
I accedintally committed ./scripts in 99be44ca25
24 lines
570 B
Bash
Executable file
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
|