mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-07 10:10:41 +03:00
be0ebb65c1
* fix debian builds issue described: https://github.com/SoftEtherVPN/SoftEtherVPN/issues/550 * add cmake3 dependency (for ubuntu 14.04) * "compat" belongs to debian/ subfolder that file is not needed in root folder * update debian package version * compare debian/changelog and src/CurrentBuild.txt
31 lines
757 B
Bash
Executable File
31 lines
757 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
while IFS=$'\n\r' read -r line || [[ -n "$line" ]]; do
|
|
echo "Text read from file: $line"
|
|
case $line in
|
|
BUILD_NUMBER\ *)
|
|
BUILD_NUMBER=${line#BUILD_NUMBER }
|
|
;;
|
|
VERSION\ *)
|
|
VERSION=${line#VERSION }
|
|
;;
|
|
BUILD_NAME\ *)
|
|
BUILD_NAME=${line#BUILD_NAME }
|
|
;;
|
|
|
|
esac
|
|
done < "src/CurrentBuild.txt"
|
|
|
|
VERSION=${VERSION:0:1}.${VERSION:1} # Add a colon after the first character. ("501" => "5.01")
|
|
|
|
CHANGELOG_VERSION="(0:$VERSION.$BUILD_NUMBER) $BUILD_NAME"
|
|
|
|
IFS=$'\n\r' read -r line < "debian/changelog"
|
|
if [[ $line == *$CNANGELOG_VERSION* ]]; then
|
|
echo "debian/changelog matches src/CurrentBuild.txt"
|
|
else
|
|
echo "debian/changelog does not match src/CurrentBuild.txt"
|
|
exit 1
|
|
fi
|