Remove old dependency thing

This commit is contained in:
rainyuu 2021-01-31 11:16:34 +01:00
parent 4216fa4256
commit 91a865467b
2 changed files with 4 additions and 5 deletions

View File

@ -38,7 +38,6 @@ func InstallMod(pkg string) []string {
deps = append(deps, depString)
}
}
}
fmt.Println(buffer)

View File

@ -68,10 +68,10 @@ func DownloadMod(depString string) (int, string) {
utils.CheckErr(err)
// TODO: Dependencies!
fmt.Println("pog")
for _, dep := range mod.Versions[0].Dependencies {
DownloadMod(dep)
}
// fmt.Println("pog")
// for _, dep := range mod.Versions[0].Dependencies {
// DownloadMod(dep)
// }
return status, modver
}