Skip to content

Commit

Permalink
chore(forklift): fix glob file finding
Browse files Browse the repository at this point in the history
  • Loading branch information
agrc-dev committed Nov 17, 2023
1 parent 04a1767 commit 37cedaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forklift/CloudLocatorsPallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def process(self) -> None:
#: copy rebuilt locator back
self.copy_locator_to(rebuild_path, locator, path_to_locators)

for locator_part in path_to_locators.glob(locator):
for locator_part in path_to_locators.glob(f"{locator}*"):
self.log.debug("uploading %s", locator_part)

blob = self.bucket.blob(locator_part.name)
Expand Down

0 comments on commit 37cedaf

Please sign in to comment.