From 0aac594f6e79025453f65590da41570b48849cd7 Mon Sep 17 00:00:00 2001 From: Raghu <105191540+raghur-orca@users.noreply.github.com> Date: Fri, 11 Jul 2025 11:10:51 +0530 Subject: [PATCH] remove the tmpdir after orca-cli installation Instructions to remove the tmp directory used for downloading and extracting orca-cli tool: rm -rf "${tmpdir}" --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 8bc405d..7009ea2 100755 --- a/install.sh +++ b/install.sh @@ -24,7 +24,7 @@ execute() { # test if Rosetta2 is present /usr/bin/pgrep -q oahd || log_info "M1 CPU requires Rosetta 2, which appears to be missing. Install it by running: '/usr/sbin/softwareupdate --install-rosetta'" fi - + rm -rf "${tmpdir}" }