run_static_analysis.sh: fix scan-build archive path

move any error reports to the top-level of OUTPUT_DIR rather than
BUILD_DIR

Change-Id: Icb6677c42a89ef86d9d295a27b79a8a591672b87
This commit is contained in:
James Zern 2022-06-13 16:17:42 -07:00
parent 5ecee06f7a
commit 7bd07f3b5d

View File

@ -85,10 +85,10 @@ scan_build make -j4
index="$(find "${OUTPUT_DIR}" -name index.html)" index="$(find "${OUTPUT_DIR}" -name index.html)"
if [[ -f "${index}" ]]; then if [[ -f "${index}" ]]; then
mv "$(dirname "${index}")/"* . mv "$(dirname "${index}")/"* "${OUTPUT_DIR}"
else else
# make a empty report to wipe out any old bug reports. # make a empty report to wipe out any old bug reports.
cat << EOT > index.html cat << EOT > "${OUTPUT_DIR}/index.html"
<html> <html>
<body> <body>
No bugs reported. No bugs reported.