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
318 B

  1. #!/bin/bash
  2. DIR="$(realpath $(dirname "$(readlink -f "$0")")/..)"
  3. PHP_VERSION=$1 # Without dot
  4. WITH_PROFILER=$2
  5. if [[ -z "${PHP_VERSION}" ]]; then PHP_VERSION=74; fi
  6. ${DIR}/dockerfiles/php-fpm/xdebug.sh stop ${PHP_VERSION} ${WITH_PROFILER}
  7. ${DIR}/dockerfiles/workspace/xdebug.sh stop ${PHP_VERSION} ${WITH_PROFILER}