From 7a882c0840172662cd2d6cdfd07efd1d377b26fd Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 8 Mar 2024 23:59:30 +0100 Subject: [PATCH] Remove `yay` directory after build --- scripts/Arch/Software/yay/install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/Arch/Software/yay/install.sh b/scripts/Arch/Software/yay/install.sh index 808e99ee..564a01ca 100755 --- a/scripts/Arch/Software/yay/install.sh +++ b/scripts/Arch/Software/yay/install.sh @@ -8,4 +8,6 @@ then pushd "$contextRoot" > /dev/null; makepkg --noconfirm -si; popd > /dev/null; + + rm -rf "$contextRoot"; fi;