Fix toRemove bug
This commit is contained in:
parent
90e65da3d7
commit
7db52b1cbf
|
@ -11,7 +11,7 @@ chmod -R a+rw .
|
|||
baseDir="$PWD"
|
||||
[ -n "$INPUT_PKGDIR" ] && inBaseDir=true || inBaseDir=false
|
||||
cd "${INPUT_PKGDIR:-.}"
|
||||
oldFiles=$(find -H "$PWD")
|
||||
oldFiles=$(find -H "$PWD" -not -path '*.git*')
|
||||
|
||||
sudo -u nobody makepkg -s --noconfirm
|
||||
|
||||
|
@ -24,6 +24,6 @@ relPkgFile="$(realpath --relative-base="$baseDir" "$pkgFile")"
|
|||
echo "::set-output name=pkgFile::$relPkgFile"
|
||||
[ $inBaseDir = false ] && mv "$pkgFile" /github/workspace
|
||||
|
||||
newFiles=$(find -H "$PWD")
|
||||
toRemove=$(printf '%s\n%s\n' "$newFiles" "$oldFiles" | sort | uniq -u)
|
||||
rm -rf "$toRemove"
|
||||
newFiles=$(find -H "$PWD" -not -path '*.git*')
|
||||
mapfile -t toRemove < <(printf '%s\n%s\n' "$newFiles" "$oldFiles" | sort | uniq -u)
|
||||
rm -rf "${toRemove[@]}"
|
||||
|
|
Loading…
Reference in New Issue