From d8ff7beef73fd048742c43dd59b5260ac840484c Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Tue, 18 Oct 2022 18:59:59 -0500 Subject: [PATCH] Fix xargs in cleanup --- build_revanced.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_revanced.sh b/build_revanced.sh index b534291..19686ad 100755 --- a/build_revanced.sh +++ b/build_revanced.sh @@ -217,4 +217,4 @@ find ./archive -maxdepth 1 -type f -printf '%Ts\t%P\n' \ | sort -rn \ | tail -n +6 \ | cut -f2- \ - | xargs -r r + | xargs -r -I {} rm {} \;