From 286704ba7dbc99995f83a645b51fed5b32b73836 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Fri, 15 Jan 2021 15:20:49 -0500 Subject: Use a temp directory in source-filter to preserve name Otherwise ctags can't figure out if the input is a lex or yacc file. --- www/git.causal.agency/source-filter.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'www/git.causal.agency') diff --git a/www/git.causal.agency/source-filter.sh b/www/git.causal.agency/source-filter.sh index 924744bd..9f150e78 100644 --- a/www/git.causal.agency/source-filter.sh +++ b/www/git.causal.agency/source-filter.sh @@ -7,12 +7,12 @@ htagml=/usr/local/libexec/htagml case "$1" in (*.[chlmy]) - src=$(mktemp -t source-filter) - tag=$(mktemp -t source-filter) - trap 'rm -f "${src}" "${tag}"' EXIT - cat >"${src}" - $ctags -w -f "${tag}" "${src}" - $hilex -n "$1" -f html "${src}" | $htagml -i -f "${tag}" "${src}" + tmp=$(mktemp -d -t source-filter) + trap 'rm -fr "${tmp}"' EXIT + cd "${tmp}" + cat >"$1" + $ctags -w "$1" + $hilex -f html "$1" | $htagml -i "$1" ;; (*) exec $hilex -t -n "$1" -f html -- cgit 1.4.1