Fix bug in namcapAnalysis() and add printWarning()

This commit is contained in:
Santiago Lo Coco 2022-02-28 23:37:31 -03:00
parent 9a4f4d4f6a
commit 48e6032801
1 changed files with 15 additions and 4 deletions

View File

@ -28,15 +28,26 @@ exportFile() {
namcapAnalysis() {
pacman -S --noconfirm namcap
namcapOutput=$(namcap PKGBUILD)
[ -n "$namcapOutput" ] && echo "::warning::$namcapOutput HOLA"
mapfile -t warnings < <(namcap PKGBUILD)
printWarnings "PKGBUILD"
if [ -f "$pkgFile" ]; then
relPkgFile="$(realpath --relative-base="$baseDir" "$pkgFile")"
namcapOutput=$(namcap "$pkgFile")
[ -n "$namcapOutput" ] && echo "::warning::$relPkgFile:$namcapOutput CHAU"
mapfile -t warnings < <(namcap "$pkgFile")
# [ ${#warnings[@]} -eq 0 ] && return
# for warning in "${warnings[@]}"; do
# echo "::warning::$relPkgFile:$warning"
# done
printWarnings "$relPkgFile"
fi
}
printWarnings() {
[ ${#warnings[@]} -eq 0 ] && return
for warning in "${warnings[@]}"; do
echo "::warning::$1:$warning"
done
}
runScript() {
set -euo pipefail