You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
267 B
9 lines
267 B
#!/bin/bash
|
|
DIR="$(realpath $(dirname "$(readlink -f "$0")")/..)"
|
|
|
|
PHP_VERSION=$1 # Without dot
|
|
|
|
if [[ -z "${PHP_VERSION}" ]]; then PHP_VERSION=74; fi
|
|
|
|
${DIR}/dockerfiles/php-fpm/xdebug.sh stop ${PHP_VERSION}
|
|
${DIR}/dockerfiles/workspace/xdebug.sh stop ${PHP_VERSION}
|