Add namcapAnalysis()
This commit is contained in:
parent
025da924aa
commit
3c18984e5d
13
pkgbuild.sh
13
pkgbuild.sh
|
@ -25,6 +25,18 @@ exportFile() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namcapAnalysis() {
|
||||||
|
pacman -S --noconfirm namcap
|
||||||
|
|
||||||
|
namcapOutput=$(namcap PKGBUILD)
|
||||||
|
echo "::warning::$namcapOutput"
|
||||||
|
if [ -f "$pkgFile" ]; then
|
||||||
|
relPkgFile="$(realpath --relative-base="$baseDir" "$pkgFile")"
|
||||||
|
namcapOutput=$(namcap "$pkgFile")
|
||||||
|
echo "::warning::$relPkgFile:$namcapOutput"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
runScript() {
|
runScript() {
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
|
@ -40,6 +52,7 @@ runScript() {
|
||||||
sudo -u nobody makepkg -s --noconfirm
|
sudo -u nobody makepkg -s --noconfirm
|
||||||
|
|
||||||
exportPackageFiles
|
exportPackageFiles
|
||||||
|
namcapAnalysis
|
||||||
|
|
||||||
newFiles=$(find -H "$PWD" -not -path '*.git*')
|
newFiles=$(find -H "$PWD" -not -path '*.git*')
|
||||||
mapfile -t toRemove < <(printf '%s\n%s\n' "$newFiles" "$oldFiles" | sort | uniq -u)
|
mapfile -t toRemove < <(printf '%s\n%s\n' "$newFiles" "$oldFiles" | sort | uniq -u)
|
||||||
|
|
Loading…
Reference in New Issue