Fixed displayed message for fspd building check

This commit is contained in:
Radim Kolar 2020-06-04 08:01:36 +02:00
parent 0fa6ea6172
commit 7f76e43551

View File

@ -1,15 +1,15 @@
# #
# SCons client commands build tester # SCons server build tester
# #
# Version 1.0 # Version 1.1
# 03-Jun-2020 # 04-Jun-2020
# #
from SCons.Script import ARGUMENTS from SCons.Script import ARGUMENTS
def checkForBuildingServer(conf): def checkForBuildingServer(conf):
"""Check command line arguments if user requested to not build server.""" """Check command line arguments if user requested to not build server."""
conf.Message("Checking if we are building client commands... ") conf.Message("Checking if we are building fspd server... ")
buildlamer=ARGUMENTS.get('without-server', 0) buildlamer=ARGUMENTS.get('without-server', 0)
try: try:
buildlamer2=int(buildlamer) buildlamer2=int(buildlamer)