cli: download latest dependency by default

pull/10941/head
bergquist 8 years ago
parent 5bbe047eaa
commit b099f0309f
  1. 2
      pkg/cmd/grafana-cli/commands/install_command.go

@ -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)
}

Loading…
Cancel
Save