Files
pgserver3.0/pgserver/vendor/mdanter/ecc/validate_examples.sh
annnj-company 130c1026c4 first commit
2026-04-17 18:29:53 +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