Skip to content

Commit

Permalink
add debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
xieyongliang committed Apr 27, 2023
1 parent f95f89c commit 62bec0b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions modules/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,6 +678,9 @@ def get_bucket_and_key(s3uri):
def s3_download(s3uri, path):
global cache

print('---path---', path)
os.system(f'ls -l {os.path.dirname(path)}')

pos = s3uri.find('/', 5)
bucket = s3uri[5 : pos]
key = s3uri[pos + 1 : ]
Expand Down

0 comments on commit 62bec0b

Please sign in to comment.