diff options
-rw-r--r-- | sbopkglint.d/70-tmp_path.t.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbopkglint.d/70-tmp_path.t.sh b/sbopkglint.d/70-tmp_path.t.sh index 5041f09..6b8537e 100644 --- a/sbopkglint.d/70-tmp_path.t.sh +++ b/sbopkglint.d/70-tmp_path.t.sh @@ -14,5 +14,5 @@ found="$(find . -type f -print0 | xargs -0 fgrep -l "$TMP/package-")" if [ -n "$found" ]; then warn "found files with TMP ($TMP/package-*) baked in:" - echo "$found" 1>&2 + echo "$found" | sed 's,var/lib/pkgtools/scripts/.*,& (aka install/doinst.sh),' 1>&2 fi |