From 0337469e249680d16796ca42de39934dfd17a73c Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 27 Feb 2022 20:41:01 -0300 Subject: [PATCH] Run shellcheck --- pkgbuild.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgbuild.sh b/pkgbuild.sh index 40fd162..cbb5dc9 100755 --- a/pkgbuild.sh +++ b/pkgbuild.sh @@ -13,7 +13,7 @@ baseDir="$PWD" cd "${INPUT_PKGDIR:-.}" oldFiles=$(find -H "$PWD") -sudo -H -u calbuilder makepkg --syncdeps --noconfirm +sudo -H -u calbuilder makepkg -s --noconfirm sudo -u calbuilder makepkg --printsrcinfo > .SRCINFO echo "::set-output name=srcInfo::.SRCINFO" @@ -24,6 +24,6 @@ relPkgFile="$(realpath --relative-base="$baseDir" "$pkgFile")" echo "::set-output name=pkgFile::$relPkgFile" sudo mv "$pkgFile" /github/workspace -newFiles=$(find -H $PWD) +newFiles=$(find -H "$PWD") toRemove=$(printf '%s\n%s\n' "$newFiles" "$oldFiles" | sort | uniq -u) -rm -rf $toRemove +rm -rf "$toRemove"