Do not remove package files

This commit is contained in:
Santiago Lo Coco 2022-03-01 13:38:47 -03:00
parent 68f5e1d1eb
commit 4cd3baaf3c
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ runScript() {
exportPackageFiles
namcapAnalysis
newFiles=$(find -H "$PWD" -not -path '*.git*')
newFiles=$(find -H "$PWD" -not -path '*.git*' -not -name "$pkgFile*" -not -name '.SRCINFO')
mapfile -t toRemove < <(printf '%s\n%s\n' "$newFiles" "$oldFiles" | sort | uniq -u)
rm -rf "${toRemove[@]}"
}