Skip to content

Commit

Permalink
decouple vers nr and branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
Schrolli91 committed Oct 3, 2017
1 parent acbef65 commit 3fed1ac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions boswatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@
#
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:
Expand Down
5 changes: 3 additions & 2 deletions includes/globalVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
"""

# version info
versionNr = "2.2.2-dev"
buildDate = "in dev"
versionNr = "2.2.2"
branch = "dev"
buildDate = "unreleased"


# Global variables
Expand Down
1 change: 1 addition & 0 deletions includes/shellHeader.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""

Expand Down

0 comments on commit 3fed1ac

Please sign in to comment.