Skip to content

Commit

Permalink
fix: flex-linux-setup setup arg
Browse files Browse the repository at this point in the history
  • Loading branch information
devrimyatar committed May 2, 2022
1 parent 727bbcd commit c5db5ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flex-linux-setup/flex_linux_setup/flex_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def get_flex_setup_parser():
setup_branch = argsp.jans_setup_branch or 'main'
install_url = 'https://raw.githubusercontent.com/JanssenProject/jans/{}/jans-linux-setup/jans_setup/install.py'.format(setup_branch)
request.urlretrieve(install_url, 'install.py')
install_cmd = 'python3 install.py --setup-branch={} --no-setup'.format(setup_branch)
install_cmd = 'python3 install.py --setup-branch={}'.format(setup_branch)
if '-yes' in sys.argv:
install_cmd += ' -yes'
print("Executing", install_cmd)
Expand Down

0 comments on commit c5db5ab

Please sign in to comment.