Skip to content

Commit

Permalink
feat: add GNOROOT environment variables (#1014)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfanton authored Aug 6, 2023
1 parent e8016f3 commit 5d3be42
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion gnovm/cmd/gno/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,16 @@ func fmtDuration(d time.Duration) string {
}

func guessRootDir() string {
// try to get the root directory from the GNOROOT environment variable.
if rootdir := os.Getenv("GNOROOT"); rootdir != "" {
return filepath.Clean(rootdir)
}

// if GNOROOT is not set, try to guess the root directory using the `go list` command.
cmd := exec.Command("go", "list", "-m", "-mod=mod", "-f", "{{.Dir}}", "github.com/gnolang/gno")
out, err := cmd.CombinedOutput()
if err != nil {
log.Fatal("can't guess --root-dir, please fill it manually.")
log.Fatal("can't guess --root-dir, please fill it manually or define the GNOROOT environment variable globally.")
}
rootDir := strings.TrimSpace(string(out))
return rootDir
Expand Down

0 comments on commit 5d3be42

Please sign in to comment.