aboutsummaryrefslogtreecommitdiff
path: root/check
diff options
context:
space:
mode:
Diffstat (limited to 'check')
-rwxr-xr-xcheck8
1 files changed, 4 insertions, 4 deletions
diff --git a/check b/check
index 8f55de5..d227565 100755
--- a/check
+++ b/check
@@ -4,10 +4,10 @@ set -e
if [ $# -lt 1 ]
then
- ./check coverage && \
- ./check typecheck && \
- ./check qa
- exit $?
+ $0 coverage
+ $0 typecheck
+ $0 qa
+ exit 0
fi
SUBCMD=$1