From 6fdf97d77ecfb342b59e0304c2569302bf1a1c4c Mon Sep 17 00:00:00 2001 From: Vladimir Panteleev Date: Wed, 2 Nov 2022 06:45:06 +0000 Subject: [PATCH] src/common: Clear file-owners file We were accidentally always appending to it on every run, causing a build-up. --- src/common.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.bash b/src/common.bash index f25216a..6b392fc 100644 --- a/src/common.bash +++ b/src/common.bash @@ -441,7 +441,7 @@ BEGIN { # The canonical version is read from orig-file-props.txt in AconfAnalyzeFiles unset orig_file_props ; typeset -Ag orig_file_props - touch "$tmp_dir"/file-owners + : > "$tmp_dir"/file-owners local paccheck_opts=(unbuffer paccheck --files --file-properties --backup --noupgrade) if [[ $skip_checksums == n ]]