Skip to content

Commit da1f0cc

Browse files
authored
Merge pull request #4034 from unsuman/fix/make-uninstall
Fix: `make uninstall` should remove external drivers
2 parents e18298a + e5f6b9d commit da1f0cc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,11 @@ uninstall:
495495
"$(DEST)/bin/kubectl.lima" \
496496
"$(DEST)/share/man/man1/lima.1" \
497497
"$(DEST)/share/man/man1/limactl"*".1" \
498-
"$(DEST)/share/lima" "$(DEST)/share/doc/lima"
498+
"$(DEST)/share/lima" \
499+
"$(DEST)/share/doc/lima" \
500+
"$(DEST)/libexec/lima/lima-driver-qemu$(exe)" \
501+
"$(DEST)/libexec/lima/lima-driver-vz$(exe)" \
502+
"$(DEST)/libexec/lima/lima-driver-wsl2$(exe)"
499503
if [ "$$(readlink "$(DEST)/bin/nerdctl")" = "nerdctl.lima" ]; then rm "$(DEST)/bin/nerdctl"; fi
500504
if [ "$$(readlink "$(DEST)/bin/apptainer")" = "apptainer.lima" ]; then rm "$(DEST)/bin/apptainer"; fi
501505

0 commit comments

Comments
 (0)