diff options
author | EuAndreh <eu@euandre.org> | 2023-03-15 14:36:03 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-15 14:36:03 -0300 |
commit | 2fa726282bc7ee9801c9db3c8e81c79eb5a75e79 (patch) | |
tree | 54e2a5a7951af57f748f72c4ea91b56affe0b7ca | |
parent | bin/reconfigure: Remove timeout limitation (diff) | |
download | dotfiles-2fa726282bc7ee9801c9db3c8e81c79eb5a75e79.tar.gz dotfiles-2fa726282bc7ee9801c9db3c8e81c79eb5a75e79.tar.xz |
Makefile: Add "check-aliases" target
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -150,9 +150,14 @@ check-opt: check-pod: podchecker bin/z +check-aliases: + for alias in abuse admin hostmaster postmaster; do \ + uuid | email -s "\"$$alias\" alias test" "$$alias@euandre.org"; \ + done + check: check-shellcheck check-perlcritic check-nixfmt check-fixme \ check-dirty-public check-dirty-private check-dirty-pass \ - check-opt check-pod + check-opt check-pod check-aliases @cd $(PRIV_CONFIG) && $(MAKE) $@ clean: |