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

This commit is contained in:
Tianon Gravi 2013-11-09 02:28:04 -07:00
parent f56945d71b
commit 7f1b179c67
1 changed files with 1 additions and 1 deletions

View File

@ -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
}