diff options
author | June McEnroe <june@causal.agency> | 2021-01-20 23:24:33 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-20 23:24:33 +0000 |
commit | 368a2ce6f31de10b5e75e001f7a15c2a6178066b (patch) | |
tree | 1f67611cc494963fab78f1d78aaf3b5ec950a218 /www | |
parent | Generate tags for sh files in mtags (diff) | |
download | src-368a2ce6f31de10b5e75e001f7a15c2a6178066b.tar.gz src-368a2ce6f31de10b5e75e001f7a15c2a6178066b.zip |
Use mtags for sh in source-filter
Diffstat (limited to '')
-rw-r--r-- | www/git.causal.agency/source-filter.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/git.causal.agency/source-filter.sh b/www/git.causal.agency/source-filter.sh index 87875bd1..514272db 100644 --- a/www/git.causal.agency/source-filter.sh +++ b/www/git.causal.agency/source-filter.sh @@ -7,7 +7,7 @@ hilex=/usr/local/libexec/hilex htagml=/usr/local/libexec/htagml case "$1" in - (*.[chlmy]|Makefile|*.mk|*.[1-9]) + (*.[chlmy]|Makefile|*.mk|*.[1-9]|.profile|.shrc|*.sh) tmp=$(mktemp -d -t source-filter) trap 'rm -fr "${tmp}"' EXIT cd "${tmp}" |