Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Commit

Permalink
Fix travis syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
oxyc committed Nov 15, 2016
1 parent a6683f5 commit 52e5214
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,25 +94,25 @@ script:
- >
if [ $TEST_INSTALLED_EXTRAS = true ]; then
docker exec ${container_id} curl -s --header Host:adminer.${HOSTNAME} localhost
| grep -q '<title>Login - Adminer'
&& (echo 'Adminer install pass' && exit 0)
docker exec ${container_id} curl -s --header Host:adminer.${HOSTNAME} localhost \
| grep -q '<title>Login - Adminer' \
&& (echo 'Adminer install pass' && exit 0) \
|| (echo 'Adminer install fail' && exit 1)
fi
- >
if [ $TEST_INSTALLED_EXTRAS = true ]; then
docker exec ${container_id} curl -s --header Host:pimpmylog.${HOSTNAME} localhost
| grep -q '<title>Pimp my Log'
&& (echo 'Pimp my Log install pass' && exit 0)
docker exec ${container_id} curl -s --header Host:pimpmylog.${HOSTNAME} localhost \
| grep -q '<title>Pimp my Log' \
&& (echo 'Pimp my Log install pass' && exit 0) \
|| (echo 'Pimp my Log install fail' && exit 1)
fi
- >
if [ $TEST_INSTALLED_EXTRAS = true ]; then
docker exec ${container_id} curl -s localhost:8025
| grep -q '<title>MailHog'
&& (echo 'MailHog install pass' && exit 0)
docker exec ${container_id} curl -s localhost:8025 \
| grep -q '<title>MailHog' \
&& (echo 'MailHog install pass' && exit 0) \
|| (echo 'MailHog install fail' && exit 1)
fi
Expand Down

0 comments on commit 52e5214

Please sign in to comment.