aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/bb/fetch2/s3.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/bb/fetch2/s3.py b/lib/bb/fetch2/s3.py
index 27993aacf..162928862 100644
--- a/lib/bb/fetch2/s3.py
+++ b/lib/bb/fetch2/s3.py
@@ -55,13 +55,15 @@ class S3(FetchMethod):
ud.localfile = d.expand(urllib.parse.unquote(ud.basename))
+ ud.basecmd = d.getVar("FETCHCMD_s3") or "/usr/bin/env aws s3"
+
def download(self, ud, d):
"""
Fetch urls
Assumes localpath was called first
"""
- cmd = 'aws s3 cp s3://%s%s %s' % (ud.host, ud.path, ud.localpath)
+ cmd = '%s cp s3://%s%s %s' % (ud.basecmd, ud.host, ud.path, ud.localpath)
bb.fetch2.check_network_access(d, cmd, ud.url)
runfetchcmd(cmd, d)
@@ -83,7 +85,7 @@ class S3(FetchMethod):
Check the status of a URL
"""
- cmd = 'aws s3 ls s3://%s%s' % (ud.host, ud.path)
+ cmd = '%s ls s3://%s%s' % (ud.basecmd, ud.host, ud.path)
bb.fetch2.check_network_access(d, cmd, ud.url)
output = runfetchcmd(cmd, d)