Skip to content

Commit

Permalink
fix: jans-linux-setup add gcs path after packages check (ref: #1514) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
devrimyatar committed Jun 7, 2022
1 parent afc539d commit 31dd609
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions jans-linux-setup/jans_setup/jans_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,6 @@ def ami_packaged():
downloads.download_apps()

sys.path.insert(0, base.pylib_dir)
sys.path.insert(0, os.path.join(base.pylib_dir, 'gcs'))


if argsp.download_exit:
downloads.download_all()
Expand All @@ -98,6 +96,7 @@ def ami_packaged():
from setup_app.utils.package_utils import packageUtils

packageUtils.check_and_install_packages()
sys.path.insert(0, os.path.join(base.pylib_dir, 'gcs'))

from setup_app.messages import msg
from setup_app.config import Config
Expand Down

0 comments on commit 31dd609

Please sign in to comment.