aboutsummaryrefslogtreecommitdiff
path: root/check/games
diff options
context:
space:
mode:
Diffstat (limited to 'check/games')
-rwxr-xr-xcheck/games14
1 files changed, 0 insertions, 14 deletions
diff --git a/check/games b/check/games
deleted file mode 100755
index d3b5feac..00000000
--- a/check/games
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-for game in games/* ; do
- [ -x "$game" ] || continue
- hb=$(sed 1q "$game") || exit
- case $hb in
- *bash)
- bash -n "$game" || exit
- ;;
- *sh)
- sh -n "$game" || exit
- ;;
- esac
-done
-printf 'All shell scripts in games parsed successfully.\n'