Browse Source

Bug fix

pull/103/head
Unknown 11 years ago
parent
commit
a5474a128a
  1. 1
      doc/conf.go
  2. 2
      gopm.go

1
doc/conf.go

@ -52,6 +52,7 @@ func init() {
cfgPath := path.Join(HomeDir, GOPM_CONFIG_FILE)
if !com.IsExist(cfgPath) {
os.MkdirAll(path.Dir(cfgPath), os.ModePerm)
if _, err = os.Create(cfgPath); err != nil {
log.Error("", "Fail to create gopm config file")
log.Fatal("", err.Error())

2
gopm.go

@ -29,7 +29,7 @@ import (
// Test that go1.1 tag above is included in builds. main.go refers to this definition.
const go11tag = true
const APP_VER = "0.6.3.0220"
const APP_VER = "0.6.3.0301"
// //cmd.CmdSearch,
// cmdClean,

Loading…
Cancel
Save