diff options
author | B. Watson <urchlay@slackware.uk> | 2023-05-30 12:26:09 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2023-05-30 12:26:09 -0400 |
commit | b76a6efb4668d3fa60905a575d75ade4dcfabb85 (patch) | |
tree | d55fe87f39b6c7782c019595a5f51370db0a3379 /sbopkglint | |
parent | b32fed5e41ba86761853342b88b12121f64bfe0a (diff) | |
download | sbo-maintainer-tools-b76a6efb4668d3fa60905a575d75ade4dcfabb85.tar.gz |
sbolint: add douninst.sh checks; sbopkglint: add hardcoded $TMP check.
Diffstat (limited to 'sbopkglint')
-rwxr-xr-x | sbopkglint | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -469,8 +469,9 @@ die() { exit 1 } -TMP=${TMP:-/tmp} -OUTPUT=${OUTPUT:-$TMP} +# N.B. these need to match the template (and they do) +TMP=${TMP:-/tmp/SBo} +OUTPUT=${OUTPUT:-/tmp} exit_status=0 |