From 166dac67d4216d395d238db9700d46249794ea09 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Wed, 25 Apr 2018 19:14:21 -0700 Subject: [PATCH] Add line continuations to the Heroku deploy script [skip ci] --- .travis.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index d8f67431..704a204a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -147,14 +147,14 @@ jobs: # Heroku doesn't have a public API endpoint for this yet, so we use the # private endpoint instead. script: > - curl https://kolkrabbi.heroku.com/apps/98fc74a8-ff56-4a21-85f6-7a1fc8ba95c9/github/push - -H "Content-Type: application/json" - -H "Accept: application/json, text/javascript, */*; q=0.01" - -H "Authorization: Bearer $HEROKU_TOKEN" - -H "accept-encoding: gzip, deflate, br" - -H "accept-language: en-US,en;q=0.9" - -H "origin: https://dashboard.heroku.com" - -H "referer: https://dashboard.heroku.com/" - -d '{"branch":"master"}' + curl https://kolkrabbi.heroku.com/apps/98fc74a8-ff56-4a21-85f6-7a1fc8ba95c9/github/push \ + -H "Content-Type: application/json" \ + -H "Accept: application/json, text/javascript, */*; q=0.01" \ + -H "Authorization: Bearer $HEROKU_TOKEN" \ + -H "accept-encoding: gzip, deflate, br" \ + -H "accept-language: en-US,en;q=0.9" \ + -H "origin: https://dashboard.heroku.com" \ + -H "referer: https://dashboard.heroku.com/" \ + -d '{"branch":"master"}' \ --fail --output - on: {tags: true}