Skip to content

Commit

Permalink
fixed no uri issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Do committed Jun 13, 2024
1 parent 47c96a8 commit eaefde5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ def compare_s3_to_repo():
to_perm = []
to_temp = []

# No changes just exit
if repo_uris == None:
return [], []

# Files to add to perm storage
for repo_uri in repo_uris:
if (repo_uri not in perm_s3_uris) and (repo_uri in temp_s3_uris):
Expand Down

0 comments on commit eaefde5

Please sign in to comment.