This commit is contained in:
Santiago Lo Coco 2022-03-01 13:44:41 -03:00
parent 4cd3baaf3c
commit b3c23a634a
1 changed files with 2 additions and 1 deletions

View File

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