Add conditions

This commit is contained in:
Santiago Lo Coco 2022-02-28 23:17:08 -03:00
parent 21a841f2d8
commit 707d6beee1
1 changed files with 2 additions and 2 deletions

View File

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