Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(flex-linux-setup): jans-app-build #1973

Merged
merged 1 commit into from
Jan 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions flex-linux-setup/flex_linux_setup/flex_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def get_flex_setup_parser():
parser.add_argument('--gluu-passwurd-cert', help="Creates Gluu Passwurd API keystore", action='store_true')
parser.add_argument('-download-exit', help="Downloads files and exits", action='store_true')
parser.add_argument('--jans-app-verison', help="Jannsen applications version", default=app_versions['JANS_APP_VERSION'])
parser.add_argument('--jans-build', help="Jannsen build", default=app_versions['JANS_BUILD'])
parser.add_argument('--jans-app-build', help="Jannsen build", default=app_versions['JANS_BUILD'])
parser.add_argument('--node-version', help="Node version", default=app_versions['NODE_VERSION'])

return parser
Expand Down Expand Up @@ -130,7 +130,7 @@ def set_app_versions_from_arguments(brgsp):
argparse.jans_versions_done = True

app_versions['JANS_APP_VERSION'] = brgsp.jans_app_verison
app_versions['JANS_BUILD'] = brgsp.jans_build
app_versions['JANS_BUILD'] = brgsp.jans_app_build
app_versions['NODE_VERSION'] = brgsp.node_version
app_versions['SETUP_BRANCH'] = brgsp.jans_setup_branch
app_versions['FLEX_BRANCH'] = brgsp.flex_branch
Expand Down
Loading