Fix bug in namcapAnalysis() and add printWarning()
This commit is contained in:
parent
9a4f4d4f6a
commit
48e6032801
19
pkgbuild.sh
19
pkgbuild.sh
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue