feat(cli): disable dependecy downloads until needed

pull/4334/merge
bergquist 10 years ago
parent c09d506245
commit 788aafff3c
  1. 4
      pkg/cmd/grafana-cli/commands/install_command.go

@ -85,13 +85,13 @@ func InstallPlugin(pluginName, version string, c CommandLine) error {
log.Infof("Installed %v successfully ✔\n", plugin.Id)
/* Enable once we need support for downloading depedencies
res, _ := s.ReadPlugin(pluginFolder, pluginName)
for _, v := range res.Dependency.Plugins {
InstallPlugin(v.Id, version, c)
log.Infof("Installed dependency: %v ✔\n", v.Id)
}
*/
return err
}

Loading…
Cancel
Save