Fix toRemove bug

This commit is contained in:
Santiago Lo Coco 2022-02-28 19:59:52 -03:00
parent 90e65da3d7
commit 7db52b1cbf
1 changed files with 4 additions and 4 deletions

View File

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