diff --git a/Jenkinsfile b/Jenkinsfile index 28c71e4..d62435a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,7 @@ pipeline { label 'linux-x64' } environment { - APP_VERSION = 'v0.2.2' + APP_VERSION = 'v0.2.3' } options { buildDiscarder(logRotator(numToKeepStr: '100', artifactNumToKeepStr: '20')) diff --git a/server.py b/server.py index 4f427f5..7ee2e5c 100644 --- a/server.py +++ b/server.py @@ -21,7 +21,7 @@ app.logger.setLevel(logging.DEBUG) # Colors: https://materializecss.com/color.html COLOR_NAV = "blue-grey darken-1" COLOR_BTN = "blue-grey darken-3" -BASE_PATH = os.environ["BASE_PATH"] +BASE_PATH = os.environ["BASE_PATH"].replace('"', '') APP_VERSION = os.environ["APP_VERSION"] GIT_COMMIT = os.environ["GIT_COMMIT"] GIT_BRANCH = os.environ["GIT_BRANCH"]