Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion get_rfswift.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1166,8 +1166,12 @@ install_lima_fork() {

color_echo "blue" "Installing Lima ${LIMA_VERSION} (PentHertz fork with USB support)..."
curl -fsSL "$url" -o "$tmp"
sudo tar xz -C /usr/local -f "$tmp"
mkdir /tmp/lima
sudo tar xz -C /tmp/lima -f "$tmp"
rsync -a /tmp/lima/* /usr/local
#sudo tar xz -C /usr/local -f "$tmp"
rm -f "$tmp"
rm -r /tmp/lima

if ! command_exists limactl; then
color_echo "red" "Lima installation failed — limactl not found in PATH."
Expand Down