Skip to content

Commit 116b791

Browse files
committed
fix: flex-linux-setup pass -yes to install.py
1 parent d235ef4 commit 116b791

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

flex-linux-setup/flex_linux_setup/flex_setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
install_url = 'https://raw.githubusercontent.com/JanssenProject/jans/{}/jans-linux-setup/jans_setup/install.py'.format(setup_branch)
3434
request.urlretrieve(install_url, 'install.py')
3535
install_cmd = 'python3 install.py --setup-branch={} --no-setup'.format(setup_branch)
36+
if '-yes' in sys.argv:
37+
install_cmd += ' -yes'
3638
print("Executing", install_cmd)
3739
os.system(install_cmd)
3840
sys.path.append(__STATIC_SETUP_DIR__)

0 commit comments

Comments
 (0)