From 3dedd4ccbedcdca1ba99333295a17d6aab13792a Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sat, 9 Apr 2016 23:58:53 -0700 Subject: [PATCH] Make shell:push multiline like the others. --- Gruntfile.coffee | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 888ab8ce0..21829b2d5 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -174,7 +174,10 @@ module.exports = (grunt) -> git commit -am "Update web page." """.split('\n').join('&&') push: - command: 'git push origin --tags -f && git push origin --all' + command: """ + git push origin --tags -f + git push origin --all + """.split('\n').join('&&') aws: command: """ aws s3 cp builds/ s3://<%= pkg.meta.awsBucket %>/builds/ --recursive --exclude "*" --include "*.js" --cache-control "max-age=600" --content-type "application/javascript; charset=utf-8"