Run proof script only on existing files.

This commit is contained in:
Daniel Kirchner 2020-07-08 22:57:36 +02:00
parent f3e100a000
commit fe5bcf759e

View File

@ -10,6 +10,7 @@ git fetch origin
error=0
for new_proof in $(git diff origin/develop --name-only test/formal/)
do
if [ -e "$new_proof" ]; then
set +e
echo "Proving $new_proof..."
output=$(python3 "$new_proof")
@ -21,6 +22,7 @@ do
echo "Proof $(basename "$new_proof" ".py") failed: $output."
error=1
fi
fi
done
if [[ "error" -eq 0 ]]