Logan 6 years ago
parent
commit
c4ebd7c172
  1. 6
      .circleci/config.yml

6
.circleci/config.yml

@ -125,11 +125,7 @@ jobs:
- run:
name: Smoke Test
command: |
HTTPCODE=curl -s -o /dev/null -w "%{http_code}" https://nameless-woodland-24979.herokuapp.com/
if [[ "$HTTPCODE" -ne 200 ]]; then
echo "heroku app not responding, failing deploy" \
exit 1; \
fi
HTTPCODE=`curl -s -o /dev/null -w "%{http_code}" https://nameless-woodland-24979.herokuapp.com/` if [[ "$HTTPCODE" -ne 200 ]]; then echo "heroku app not responding, failing deploy" \ exit 1; \ fi
workflows:
version: 2

Loading…
Cancel
Save