summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsync_to_cdn.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/sync_to_cdn.sh b/sync_to_cdn.sh
index da77d8f..f6207e1 100755
--- a/sync_to_cdn.sh
+++ b/sync_to_cdn.sh
@@ -6,5 +6,5 @@ for i in `ls -d */`; do
echo "Synchronizing $i ..."
aws s3 sync $i "$TARGET" --exclude ".github/*" --profile projcdn
done
-aws s3 cp index.html "$TARGET" --profile projcdn
-aws s3 cp README.DATUMGRID "$TARGET" --profile projcdn
+aws s3 cp index.html "$TARGET" --profile projcdn --content-type "text/html"
+aws s3 cp README.DATUMGRID "$TARGET" --profile projcdn --content-type "text/plain"