cli: download latest dependency by default

This commit is contained in:
bergquist 2018-02-16 09:54:37 +01:00
parent 5bbe047eaa
commit b099f0309f

View File

@ -94,7 +94,7 @@ func InstallPlugin(pluginName, version string, c CommandLine) error {
res, _ := s.ReadPlugin(pluginFolder, pluginName)
for _, v := range res.Dependencies.Plugins {
InstallPlugin(v.Id, version, c)
InstallPlugin(v.Id, "", c)
logger.Infof("Installed dependency: %v ✔\n", v.Id)
}