Skip to content

Commit 0bac40f

Browse files
committed
Add a convenience wrapper
1 parent e9d87dc commit 0bac40f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

scripts/check

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/sh
2+
3+
cd $(dirname $0)/..
4+
5+
./scripts/linting/lint
6+
result=$?
7+
8+
./scripts/typing/check
9+
result=$((result | $?))
10+
11+
exit $result

0 commit comments

Comments
 (0)