Skip to content

Commit

Permalink
Add --force-glacier-transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
hisplan committed Mar 26, 2022
1 parent abc7bac commit 8c37e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/seqc/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def download_awscli(cls, link, prefix='./', overwrite=True, recursive=False):
'provided link %s was a prefix but download was not called recursively. '
'Please provide a filename or download recursively.' % link)

cmd = 'aws s3 cp %s %s' % (link, prefix)
cmd = 'aws s3 cp --force-glacier-transfer %s %s' % (link, prefix)
if recursive:
cmd += ' --recursive'

Expand Down

0 comments on commit 8c37e93

Please sign in to comment.