mirror of
https://github.com/beego/bee.git
synced 2024-11-22 05:00:54 +00:00
Enable go install by default to reduce build time without gopm.
This commit is contained in:
parent
2ff99d4ea7
commit
aa195ecd46
2
conf.go
2
conf.go
@ -33,7 +33,7 @@ var defaultConf = `{
|
||||
"enable": false,
|
||||
"install": false
|
||||
},
|
||||
"go_install": false,
|
||||
"go_install": true,
|
||||
"watch_ext": [],
|
||||
"dir_structure": {
|
||||
"watch_all": false,
|
||||
|
9
watch.go
9
watch.go
@ -132,7 +132,14 @@ func AutoBuild(files []string, isgenerate bool) {
|
||||
var err error
|
||||
// For applications use full import path like "github.com/.../.."
|
||||
// are able to use "go install" to reduce build time.
|
||||
if conf.GoInstall || conf.Gopm.Install {
|
||||
if conf.GoInstall {
|
||||
icmd := exec.Command(cmdName, "install", "-v")
|
||||
icmd.Stdout = os.Stdout
|
||||
icmd.Stderr = os.Stderr
|
||||
icmd.Env = append(os.Environ(), "GOGC=off")
|
||||
icmd.Run()
|
||||
}
|
||||
if conf.Gopm.Install {
|
||||
icmd := exec.Command("go", "list", "./...")
|
||||
buf := bytes.NewBuffer([]byte(""))
|
||||
icmd.Stdout = buf
|
||||
|
Loading…
Reference in New Issue
Block a user