Skip to content
This repository was archived by the owner on Aug 31, 2020. It is now read-only.

Commit 6a98afa

Browse files
committed
Include *.txt files when uploading to S3
1 parent b6d17f9 commit 6a98afa

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Gruntfile.coffee

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ module.exports = (grunt)->
5656
{expand: true, cwd:'./build/static', src:'**/*.js', dest:'./dist/'}
5757
{expand: true, cwd:'./build/static', src:'**/*.json', dest:'./dist/'}
5858
{expand: true, cwd:'./build/static', src:'**/*.ttf', dest:'./dist/'}
59+
{expand: true, cwd:'./build/static', src:'**/*.txt', dest:'./dist/'}
5960
]
6061

6162
coffee:

scripts/s3_upload

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,12 @@ GZIP="--add-header=content-encoding:gzip"
3636
CMD="sync $SOURCE_DIR $TARGET_DIR -r -P $HEADERS --stop-on-error --exclude=*"
3737

3838
echo "Preparing to upload to S3..."
39-
s3cmd $CMD -m 'image/png' --include="*.png" || exit 1
4039
s3cmd $CMD -m 'image/gif' --include="*.gif" || exit 1
40+
s3cmd $CMD -m 'image/png' --include="*.png" || exit 1
4141
s3cmd $CMD $GZIP -m 'application/json' --include="*.json" || exit 1
4242
s3cmd $CMD $GZIP -m 'application/octet-stream' --include="*.ttf" || exit 1
4343
s3cmd $CMD $GZIP -m 'text/css; charset=utf8' --include="*.css" || exit 1
4444
s3cmd $CMD $GZIP -m 'text/html; charset=utf8' --include="*.html" || exit 1
4545
s3cmd $CMD $GZIP -m 'text/javascript; charset=utf8' --include="*.js" || exit 1
46+
s3cmd $CMD $GZIP -m 'text/plain' --include="*.txt" || exit 1
4647
echo "S3 Upload Complete"

0 commit comments

Comments
 (0)