aboutsummaryrefslogtreecommitdiff
path: root/scripts/runall.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/runall.sh')
-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
+