mirror of
https://github.com/danog/docker-php-extension-installer.git
synced 2024-12-02 09:27:58 +01:00
13 lines
258 B
Bash
Executable File
13 lines
258 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)/_bootstrap.sh"
|
|
|
|
if test -z "$(php --ri blackfire | grep 'Blackfire => enabled')"; then
|
|
echo 'Blackfire PHP Probe is disabled' >&2
|
|
rc=1
|
|
else
|
|
echo 'Blackfire PHP Probe is enabled'
|
|
rc=0
|
|
fi
|
|
exit $rc
|