mirror of
https://github.com/danog/docker-php-extension-installer.git
synced 2024-11-27 04:24:46 +01:00
14 lines
245 B
Bash
Executable File
14 lines
245 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
|
|
rc=0
|
|
if test -z "$(php --ri stomp | grep 'SSL Support => enabled')"; then
|
|
echo 'stomp has not been compiled with SSL support' >&2
|
|
rc=1
|
|
else
|
|
echo 'stomp has been compiled with SSL support'
|
|
fi
|
|
exit $rc
|