diff options
author | EuAndreh <eu@euandre.org> | 2021-01-22 15:05:07 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-22 15:05:07 -0300 |
commit | 4dc56a8b6f6fc0c0f16a92d51f99583909303f95 (patch) | |
tree | 35f0851a967774efb697f1d280a71d142d548f54 /Makefile | |
parent | remembering: ShellCheck (diff) | |
download | remembering-4dc56a8b6f6fc0c0f16a92d51f99583909303f95.tar.gz remembering-4dc56a8b6f6fc0c0f16a92d51f99583909303f95.tar.xz |
Add build-aux/assert-shellcheck.sh and run in "check" target
Diffstat (limited to '')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -29,6 +29,11 @@ uninstall: check: sh tests/all.sh + if [ -d .git ]; then \ + echo 'Assuming Git repository, running development checks.'; \ + sh build-aux/assert-shellcheck.sh; \ + fi + dist: if git show $(VERSION) 1>/dev/null 2>/dev/null; then \ echo 'Version $(VERSION) already exists.'; \ |