Refactor
This commit is contained in:
parent
04fe2c8dd8
commit
16db5eec18
|
@ -115,15 +115,18 @@ runScript() {
|
||||||
else
|
else
|
||||||
inBaseDir=true
|
inBaseDir=true
|
||||||
fi
|
fi
|
||||||
oldFiles=$(find -H "$PWD" -not -path '*.git*')
|
findArgs=("-not" "-path" "*.git*")
|
||||||
|
oldFiles=$(find -H "$PWD" "${findArgs[@]}")
|
||||||
|
|
||||||
installAurDeps
|
installAurDeps
|
||||||
buildPackage
|
buildPackage
|
||||||
exportPackageFiles
|
exportPackageFiles
|
||||||
namcapAnalysis
|
namcapAnalysis
|
||||||
|
|
||||||
newFiles=$(find -H "$PWD" -not -path '*.git*' -not -name "$relPkgFile*" -not -name '.SRCINFO')
|
findArgs+=("-not" "-name" "$relPkgFile*" "-not" "-name" ".SRCINFO")
|
||||||
mapfile -t toRemove < <(printf '%s\n%s\n' "$newFiles" "$oldFiles" | sort | uniq -u)
|
newFiles=$(find -H "$PWD" "${findArgs[@]}")
|
||||||
|
files=$(printf '%s\n%s\n' "$newFiles" "$oldFiles")
|
||||||
|
mapfile -t toRemove < <(echo "$files" | sort | uniq -u)
|
||||||
rm -rf "${toRemove[@]}"
|
rm -rf "${toRemove[@]}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue