set -eしてるんだから落ちるだろうが

This commit is contained in:
shibafu 2019-03-19 00:56:31 +09:00
parent 34df704fdb
commit a7859fdda6
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ set -e
if [[ "$APP_DEBUG" == "true" ]]; then
export PHP_INI_SCAN_DIR=":/usr/local/etc/php/php.d"
php -r "if (gethostbyname('host.docker.internal') === 'host.docker.internal') exit(1);" &> /dev/null
php -r "if (gethostbyname('host.docker.internal') === 'host.docker.internal') exit(1);" &> /dev/null && :
if [[ $? -eq 0 ]]; then
# Docker for Windows/Mac
export PHP_XDEBUG_REMOTE_HOST='host.docker.internal'