From b3c23a634afc725bdf9169bced31d49ab388ed7f Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 1 Mar 2022 13:44:41 -0300 Subject: [PATCH] Fix bug --- pkgbuild.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgbuild.sh b/pkgbuild.sh index f82e0ed..08dc676 100755 --- a/pkgbuild.sh +++ b/pkgbuild.sh @@ -123,7 +123,8 @@ runScript() { exportPackageFiles 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) rm -rf "${toRemove[@]}" }