Fixing some huge bugs, and implemented remove function

This commit is contained in:
2025-09-28 16:45:51 -03:00
parent 2c322d4de8
commit b4f55ad36f
4 changed files with 47 additions and 51 deletions

View File

@@ -257,7 +257,7 @@ func CheckIfPackageInstalled(name string) (bool, error) {
}
func GetDependencies(name string) ([]string, error) {
db, err := sql.Open("sqlite", consts.InstalledDB)
db, err := sql.Open("sqlite", consts.IndexDB)
if err != nil {
return []string{}, err
}