pay/includes/vendor/mdanter/ecc/validate_examples.sh
2025-11-28 10:08:12 +08:00

9 lines
148 B
Bash

#!/bin/bash
for i in examples/*.php; do
php $i
if [ $? != 0 ]; then
echo "Error running example code";
exit -1
fi;
done