Skip to content

Commit

Permalink
Merge pull request #9 from iFargle/7-container-v022-base_path-issue
Browse files Browse the repository at this point in the history
7 container v022 base path issue
  • Loading branch information
iFargle authored Feb 10, 2023
2 parents 8ba9afd + 8f2471a commit fa17088
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'))
Expand Down
2 changes: 1 addition & 1 deletion server.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# 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"]
Expand Down

0 comments on commit fa17088

Please sign in to comment.