File "validate_examples.sh"
Full Path: /home/digidjwy/public_html/wp-content/plugins/mycryptocheckout/vendor/mdanter/ecc/tests/validate_examples.sh
File size: 160 bytes
MIME-type: text/x-shellscript
Charset: utf-8
#!/bin/bash
for i in ../examples/*.php; do
/usr/bin/php $i
if [ $? != 0 ]; then
echo "Error running example code";
exit -1
fi;
done