Skip to content

Commit

Permalink
fix: jans-linux-setup don't call package installation unless missing …
Browse files Browse the repository at this point in the history
…packages (#2641)
  • Loading branch information
devrimyatar committed Oct 17, 2022
1 parent 2d402f2 commit d340c3c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jans-linux-setup/jans_setup/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ def check_install_dependencies():
print("Can't continue...")
sys.exit()

os.system('{} install -y {}'.format(package_installer, ' '.join(package_dependencies)))
if package_dependencies:
os.system('{} install -y {}'.format(package_installer, ' '.join(package_dependencies)))


def download_jans_acrhieve():
Expand Down

0 comments on commit d340c3c

Please sign in to comment.