Skip to content

Commit

Permalink
fix: flex-linux-setup pass -yes to install.py
Browse files Browse the repository at this point in the history
  • Loading branch information
devrimyatar committed Feb 25, 2022
1 parent d235ef4 commit 116b791
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions flex-linux-setup/flex_linux_setup/flex_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
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)
if '-yes' in sys.argv:
install_cmd += ' -yes'
print("Executing", install_cmd)
os.system(install_cmd)
sys.path.append(__STATIC_SETUP_DIR__)
Expand Down

0 comments on commit 116b791

Please sign in to comment.