Add conditions
This commit is contained in:
parent
21a841f2d8
commit
707d6beee1
|
@ -29,11 +29,11 @@ namcapAnalysis() {
|
||||||
pacman -S --noconfirm namcap
|
pacman -S --noconfirm namcap
|
||||||
|
|
||||||
namcapOutput=$(namcap PKGBUILD)
|
namcapOutput=$(namcap PKGBUILD)
|
||||||
echo "::warning::$namcapOutput"
|
[ -n "$namcapOutput" ] && echo "::warning::$namcapOutput"
|
||||||
if [ -f "$pkgFile" ]; then
|
if [ -f "$pkgFile" ]; then
|
||||||
relPkgFile="$(realpath --relative-base="$baseDir" "$pkgFile")"
|
relPkgFile="$(realpath --relative-base="$baseDir" "$pkgFile")"
|
||||||
namcapOutput=$(namcap "$pkgFile")
|
namcapOutput=$(namcap "$pkgFile")
|
||||||
echo "::warning::$relPkgFile:$namcapOutput"
|
[ -n "$namcapOutput" ] && echo "::warning::$relPkgFile:$namcapOutput"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue