mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Revert "feat(cli): detects plugin folder for dev env"
This reverts commit a5eda6a87b
.
This commit is contained in:
parent
75555c470b
commit
d98839fc19
@ -8,6 +8,7 @@ import (
|
|||||||
"github.com/codegangsta/cli"
|
"github.com/codegangsta/cli"
|
||||||
"github.com/grafana/grafana/pkg/cmd/grafana-cli/commands"
|
"github.com/grafana/grafana/pkg/cmd/grafana-cli/commands"
|
||||||
"github.com/grafana/grafana/pkg/cmd/grafana-cli/log"
|
"github.com/grafana/grafana/pkg/cmd/grafana-cli/log"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
var version = "master"
|
var version = "master"
|
||||||
@ -17,7 +18,7 @@ func getGrafanaPluginDir() string {
|
|||||||
defaultNix := "/var/lib/grafana/plugins"
|
defaultNix := "/var/lib/grafana/plugins"
|
||||||
|
|
||||||
if currentOS == "windows" {
|
if currentOS == "windows" {
|
||||||
return "..\\data\\plugins"
|
return "C:\\opt\\grafana\\plugins"
|
||||||
}
|
}
|
||||||
|
|
||||||
pwd, err := os.Getwd()
|
pwd, err := os.Getwd()
|
||||||
@ -28,16 +29,16 @@ func getGrafanaPluginDir() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if isDevenvironment(pwd) {
|
if isDevenvironment(pwd) {
|
||||||
return "../data/plugins"
|
return "../../../data/plugins"
|
||||||
}
|
}
|
||||||
|
|
||||||
return defaultNix
|
return defaultNix
|
||||||
}
|
}
|
||||||
|
|
||||||
func isDevenvironment(pwd string) bool {
|
func isDevenvironment(pwd string) bool {
|
||||||
// if ../conf/default.ini exists, grafana is not installed as package
|
// if grafana-cli is executed from the cmd folder we can assume
|
||||||
_, err := os.Stat("../conf/default.ini")
|
// that its in development environment.
|
||||||
return err != nil
|
return strings.HasSuffix(pwd, "/pkg/cmd/grafana-cli")
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
Loading…
Reference in New Issue
Block a user