bugfix, fix command fixing leaving after remove 1 package

This commit is contained in:
2025-10-11 19:38:50 -03:00
parent 7c4fba5c86
commit be96001d78

View File

@@ -387,11 +387,12 @@ var removeCmd = &cobra.Command{
} }
fmt.Println("Sucessifully removed") fmt.Println("Sucessifully removed")
continue
os.Exit(0)
} }
log.Fatalf("%s not installed", pkgName) log.Fatalf("%s not installed", pkgName)
} }
os.Exit(0)
}, },
} }