1
0
Fork 0
mirror of https://github.com/mlocati/docker-php-extension-installer synced 2025-05-08 16:17:20 +00:00
docker-php-extension-installer/scripts/tests/stomp
2021-07-15 10:44:06 +02:00

13 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