Skip to content

Commit e642bcc

Browse files
authored
Merge pull request #156 from boegel/ingestion_staging_buckets
also print name of bucket when using --list-only
2 parents 1bc508a + 4403d3f commit e642bcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/automated_ingestion/automated_ingestion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def main():
104104
tarballs = find_tarballs(s3, bucket)
105105
if args.list_only:
106106
for num, tarball in enumerate(tarballs):
107-
print(f'{num}: {tarball}')
107+
print(f'[{bucket}] {num}: {tarball}')
108108
else:
109109
for tarball in tarballs:
110110
tar = EessiTarball(tarball, config, gh, s3, bucket)

0 commit comments

Comments
 (0)