Browse Source

Fix the display of get.docker.io in Firefox by making our index files text/plain

Tianon Gravi 11 năm trước cách đây
mục cha
commit
7f1b179c67
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      hack/release.sh

+ 1 - 1
hack/release.sh

@@ -97,7 +97,7 @@ write_to_s3() {
 	DEST=$1
 	F=`mktemp`
 	cat > $F
-	s3cmd --acl-public put $F $DEST
+	s3cmd --acl-public --mime-type='text/plain' put $F $DEST
 	rm -f $F
 }