From 4cd3baaf3c418c459f01bd2608d439fa93afe2af Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 1 Mar 2022 13:38:47 -0300 Subject: [PATCH] Do not remove package files --- pkgbuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgbuild.sh b/pkgbuild.sh index 1c34dc3..f82e0ed 100755 --- a/pkgbuild.sh +++ b/pkgbuild.sh @@ -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[@]}" }