Added IsDeveloperVersion to detect if release is still under development

This commit is contained in:
Michael Boelen 2016-06-18 09:28:53 +02:00
parent b6afd93b9b
commit 1be27c7b00
1 changed files with 13 additions and 0 deletions

View File

@ -45,6 +45,7 @@
# GetHostID Retrieve an unique ID for this host
# IsDebug Check if --debug is used
# IsDeveloperMode Check if --developer is used
# IsDeveloperVersion Check if program is a developer release
# IsRunning Check if a process is running
# InsertSection Insert a section block
# InsertPluginSection Insert a section block for plugins
@ -918,6 +919,18 @@
}
################################################################################
# Name : IsDeveloperVersion()
# Description : Check if this version is development or stable release
#
# Returns : 0 (True) or 1 (False)
################################################################################
IsDeveloperVersion() {
if [ "${PROGRAM_RELEASE_TYPE}" = "dev" ]; then return 0; else return 1; fi
}
################################################################################
# Name : IsRunning()
# Description : Check if a process is running