diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2020-12-21 23:03:35 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2020-12-21 23:09:02 -0500 |
| commit | 7c5bef76c50121e2171e0e67feff2fb46b2a3a56 (patch) | |
| tree | a66cd5d78c26c07a55784d74a12b459011121817 /tools/check | |
Created a helper for loading environment entries from a directory.
Diffstat (limited to 'tools/check')
| -rwxr-xr-x | tools/check | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/check b/tools/check new file mode 100755 index 0000000..269a23d --- /dev/null +++ b/tools/check @@ -0,0 +1,10 @@ +#!/bin/bash -e + +cd "$(dirname "$0")/.." + +## tools/check +## +## Run checks on the project, exiting with a zero status if all checks pass. + +tools/check-lint +tools/check-style |
