aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-06-18 20:55:54 +0800
committerMistivia <i@mistivia.com>2025-06-18 20:55:54 +0800
commit0b335dc24e76cace44e748e62d5cbbc40c4355f5 (patch)
tree5fa2ef69b88908a8ddb6c78624919d967fcba875 /scripts
parent6f1cfbda4a519ad8a232d126539a2732ab43c671 (diff)
finish parser
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runall.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/runall.sh b/scripts/runall.sh
new file mode 100755
index 0000000..3fdc745
--- /dev/null
+++ b/scripts/runall.sh
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+
+for var in "$@"; do
+ ./$var
+ if [ $? -ne 0 ]; then
+ exit 255
+ fi
+done
+