mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2026-01-25 01:20:21 +01:00
decouple vers nr and branch name
This commit is contained in:
parent
acbef6591c
commit
3fed1ac12a
|
|
@ -162,6 +162,7 @@ try:
|
|||
#
|
||||
try:
|
||||
logging.debug("SW Version: %s",globalVars.versionNr)
|
||||
logging.debug("Branch: %s",globalVars.branch)
|
||||
logging.debug("Build Date: %s",globalVars.buildDate)
|
||||
logging.debug("BOSWatch given arguments")
|
||||
if args.test:
|
||||
|
|
|
|||
|
|
@ -9,8 +9,9 @@ Global variables
|
|||
"""
|
||||
|
||||
# version info
|
||||
versionNr = "2.2.2-dev"
|
||||
buildDate = "in dev"
|
||||
versionNr = "2.2.2"
|
||||
branch = "dev"
|
||||
buildDate = "unreleased"
|
||||
|
||||
|
||||
# Global variables
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ def printHeader(args):
|
|||
print " by Bastian Schroll, Jens Herrmann "
|
||||
print ""
|
||||
print "SW Version: "+globalVars.versionNr
|
||||
print "Branch: "+globalVars.branch
|
||||
print "Build Date: "+globalVars.buildDate
|
||||
print ""
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue