Skip to content

Commit

Permalink
Skip creating zips for empty containers
Browse files Browse the repository at this point in the history
  • Loading branch information
Z1ni committed Oct 8, 2023
1 parent 8fc0e8b commit 5f36f3b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,8 @@ def main():

# Get save file paths
save_paths = get_save_paths(store_pkg_name, containers, temp_dir)
if len(save_paths) == 0:
continue
print(f" Save files for user {xbox_username_or_id}:")
for file_name, _ in save_paths:
print(f" - {file_name}")
Expand Down

0 comments on commit 5f36f3b

Please sign in to comment.