We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d235ef4 commit 116b791Copy full SHA for 116b791
flex-linux-setup/flex_linux_setup/flex_setup.py
@@ -33,6 +33,8 @@
33
install_url = 'https://raw.githubusercontent.com/JanssenProject/jans/{}/jans-linux-setup/jans_setup/install.py'.format(setup_branch)
34
request.urlretrieve(install_url, 'install.py')
35
install_cmd = 'python3 install.py --setup-branch={} --no-setup'.format(setup_branch)
36
+ if '-yes' in sys.argv:
37
+ install_cmd += ' -yes'
38
print("Executing", install_cmd)
39
os.system(install_cmd)
40
sys.path.append(__STATIC_SETUP_DIR__)
0 commit comments