aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2022-03-11 09:58:55 +0100
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2022-03-11 09:58:55 +0100
commita866b8ab9d81ebbea0bd43672d944d5cef1caf25 (patch)
treeeca6aca01ac23cf28e13b0a79272494fc4313bca
parenta32831c840aa5ebf8b78caf38db5ba45f8be96c3 (diff)
check: improve bash syntax
-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