Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: jans-linux-setup add gcs path after packages check (ref: #1514) #1516

Merged
merged 1 commit into from
Jun 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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