This commit is contained in:
Santiago Lo Coco 2022-03-01 14:46:29 -03:00
parent 04fe2c8dd8
commit 16db5eec18
1 changed files with 6 additions and 3 deletions

View File

@ -115,15 +115,18 @@ runScript() {
else
inBaseDir=true
fi
oldFiles=$(find -H "$PWD" -not -path '*.git*')
findArgs=("-not" "-path" "*.git*")
oldFiles=$(find -H "$PWD" "${findArgs[@]}")
installAurDeps
buildPackage
exportPackageFiles
namcapAnalysis
newFiles=$(find -H "$PWD" -not -path '*.git*' -not -name "$relPkgFile*" -not -name '.SRCINFO')
mapfile -t toRemove < <(printf '%s\n%s\n' "$newFiles" "$oldFiles" | sort | uniq -u)
findArgs+=("-not" "-name" "$relPkgFile*" "-not" "-name" ".SRCINFO")
newFiles=$(find -H "$PWD" "${findArgs[@]}")
files=$(printf '%s\n%s\n' "$newFiles" "$oldFiles")
mapfile -t toRemove < <(echo "$files" | sort | uniq -u)
rm -rf "${toRemove[@]}"
}