Run shellcheck

This commit is contained in:
Santiago Lo Coco 2022-02-27 20:41:01 -03:00
parent c63f2c38b9
commit 0337469e24
1 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ baseDir="$PWD"
cd "${INPUT_PKGDIR:-.}" cd "${INPUT_PKGDIR:-.}"
oldFiles=$(find -H "$PWD") oldFiles=$(find -H "$PWD")
sudo -H -u calbuilder makepkg --syncdeps --noconfirm sudo -H -u calbuilder makepkg -s --noconfirm
sudo -u calbuilder makepkg --printsrcinfo > .SRCINFO sudo -u calbuilder makepkg --printsrcinfo > .SRCINFO
echo "::set-output name=srcInfo::.SRCINFO" echo "::set-output name=srcInfo::.SRCINFO"
@ -24,6 +24,6 @@ relPkgFile="$(realpath --relative-base="$baseDir" "$pkgFile")"
echo "::set-output name=pkgFile::$relPkgFile" echo "::set-output name=pkgFile::$relPkgFile"
sudo mv "$pkgFile" /github/workspace sudo mv "$pkgFile" /github/workspace
newFiles=$(find -H $PWD) newFiles=$(find -H "$PWD")
toRemove=$(printf '%s\n%s\n' "$newFiles" "$oldFiles" | sort | uniq -u) toRemove=$(printf '%s\n%s\n' "$newFiles" "$oldFiles" | sort | uniq -u)
rm -rf $toRemove rm -rf "$toRemove"