From e40fe1a391420db4b3cfbacb308d3a2f0d0612eb Mon Sep 17 00:00:00 2001 From: BenceSzalai Date: Thu, 1 May 2025 17:53:20 +0200 Subject: [PATCH] Also clean up additional `.ape-x.xx.c` files on Darwin for all versions --- ape/apeuninstall.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ape/apeuninstall.sh b/ape/apeuninstall.sh index bc725fbf7..e3cf72e6b 100755 --- a/ape/apeuninstall.sh +++ b/ape/apeuninstall.sh @@ -60,7 +60,6 @@ for x in .ape \ .ape-1.8 \ .ape-1.9 \ .ape-1.10-arm64 \ - .ape-1.10-arm64.c \ .ape-1.10-x86_64 \ .ape-1.10; do rm -f \ @@ -68,4 +67,9 @@ for x in .ape \ /tmp/$x \ o/tmp/$x \ "${TMPDIR:-/tmp}/$x" + rm -f \ + ~/$x \ + /tmp/$x \ + o/tmp/$x \ + "${TMPDIR:-/tmp}/$x.c" done