Skip to content

Commit c5db5ab

Browse files
committed
fix: flex-linux-setup setup arg
1 parent 727bbcd commit c5db5ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flex-linux-setup/flex_linux_setup/flex_setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def get_flex_setup_parser():
3939
setup_branch = argsp.jans_setup_branch or 'main'
4040
install_url = 'https://raw.githubusercontent.com/JanssenProject/jans/{}/jans-linux-setup/jans_setup/install.py'.format(setup_branch)
4141
request.urlretrieve(install_url, 'install.py')
42-
install_cmd = 'python3 install.py --setup-branch={} --no-setup'.format(setup_branch)
42+
install_cmd = 'python3 install.py --setup-branch={}'.format(setup_branch)
4343
if '-yes' in sys.argv:
4444
install_cmd += ' -yes'
4545
print("Executing", install_cmd)

0 commit comments

Comments
 (0)