aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo
diff options
context:
space:
mode:
Diffstat (limited to 'python/servo')
-rw-r--r--python/servo/package_commands.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py
index 1e26bdc74ca..a9e77709cfb 100644
--- a/python/servo/package_commands.py
+++ b/python/servo/package_commands.py
@@ -651,7 +651,9 @@ class PackageCommands(CommandBase):
'Key': package_upload_key,
}
s3.copy(copy_source, BUCKET, latest_upload_key)
- s3.upload_fileobj(package_hash_fileobj, BUCKET, latest_hash_upload_key)
+ s3.upload_fileobj(
+ package_hash_fileobj, BUCKET, latest_hash_upload_key, ExtraArgs={'ContentType': 'text/plain'}
+ )
def update_maven(directory):
(aws_access_key, aws_secret_access_key) = get_s3_secret()