Skip to content

Commit

Permalink
Revert get_bundle_path.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mvlassis committed Aug 27, 2024
1 parent 89d7626 commit 0a70ffa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/get_bundle_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ def get_bundle_path_from_release() -> None:
release = sys.argv[1]
bundle_is_latest = re.search("^latest/", release)
if bundle_is_latest:
bundle_path = "./releases/" + release + "/bundle.yaml"
bundle_path = "./releases/" + release + "/"
else:
bundle_path = "./releases/" + release + "/kubeflow/bundle.yaml"
bundle_path = "./releases/" + release + "/kubeflow/"

# Check if file in bundle_path output exists
# Expect the script to be executed from `bundle-kubeflow` repo directory
Expand Down

0 comments on commit 0a70ffa

Please sign in to comment.