This commit is contained in:
Santiago Lo Coco 2022-02-28 23:18:45 -03:00
parent 707d6beee1
commit 9a4f4d4f6a
1 changed files with 2 additions and 2 deletions

View File

@ -29,11 +29,11 @@ namcapAnalysis() {
pacman -S --noconfirm namcap
namcapOutput=$(namcap PKGBUILD)
[ -n "$namcapOutput" ] && echo "::warning::$namcapOutput"
[ -n "$namcapOutput" ] && echo "::warning::$namcapOutput HOLA"
if [ -f "$pkgFile" ]; then
relPkgFile="$(realpath --relative-base="$baseDir" "$pkgFile")"
namcapOutput=$(namcap "$pkgFile")
[ -n "$namcapOutput" ] && echo "::warning::$relPkgFile:$namcapOutput"
[ -n "$namcapOutput" ] && echo "::warning::$relPkgFile:$namcapOutput CHAU"
fi
}