aboutsummaryrefslogtreecommitdiff
path: root/check
diff options
context:
space:
mode:
Diffstat (limited to 'check')
-rwxr-xr-xcheck/bin2
-rwxr-xr-xcheck/games2
2 files changed, 2 insertions, 2 deletions
diff --git a/check/bin b/check/bin
index a4d5e452..2fc4e767 100755
--- a/check/bin
+++ b/check/bin
@@ -1,6 +1,6 @@
#!/bin/sh
for bin in bin/* ; do
- [ -f "$bin" ] || continue
+ [ -x "$bin" ] || continue
hb=$(sed 1q "$bin") || exit
case $hb in
*bash)
diff --git a/check/games b/check/games
index 3afe6414..d3b5feac 100755
--- a/check/games
+++ b/check/games
@@ -1,6 +1,6 @@
#!/bin/sh
for game in games/* ; do
- [ -f "$game" ] || continue
+ [ -x "$game" ] || continue
hb=$(sed 1q "$game") || exit
case $hb in
*bash)