From 16db5eec181b45a7de2a607261bb4b2da98f0c6e Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 1 Mar 2022 14:46:29 -0300 Subject: [PATCH] Refactor --- pkgbuild.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgbuild.sh b/pkgbuild.sh index 7e0fff6..a8c65b3 100755 --- a/pkgbuild.sh +++ b/pkgbuild.sh @@ -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[@]}" }