From be96001d789f0ea0da44027e9c2d749a876d9ae9 Mon Sep 17 00:00:00 2001 From: roboogg133 Date: Sat, 11 Oct 2025 19:38:50 -0300 Subject: [PATCH] bugfix, fix command fixing leaving after remove 1 package --- cmd/packets/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/packets/main.go b/cmd/packets/main.go index cfaa9be..f43a2eb 100644 --- a/cmd/packets/main.go +++ b/cmd/packets/main.go @@ -387,11 +387,12 @@ var removeCmd = &cobra.Command{ } fmt.Println("Sucessifully removed") + continue - os.Exit(0) } log.Fatalf("%s not installed", pkgName) } + os.Exit(0) }, }