❇️ Adds DEBUG option

This commit is contained in:
Christian Mäder 2018-03-05 14:30:30 +01:00
parent 8f001adef4
commit 30a37511e2
No known key found for this signature in database
GPG key ID: 92FFD0A711F196BB
2 changed files with 17 additions and 4 deletions

View file

@ -27,8 +27,12 @@ if [ "${PRERELEASE}" == "true" ]; then
if ( [ "$MAJOR_STABLE" -eq "$MAJOR_UNSTABLE" ] && [ "$MINOR_STABLE" -ge "$MINOR_UNSTABLE" ] ) \
|| [ "$MAJOR_STABLE" -gt "$MAJOR_UNSTABLE" ]; then
exit 0
echo "❎ Latest unstable version ('$VERSION') is not higher than the latest stable version ('$STABLE_VERSION')."
if [ -z "$DEBUG" ]; then
exit 0
else
echo "⚠️ Would exit here with code '0', but DEBUG is enabled."
fi
fi
fi