Browse Source

Finish all the refine work

master
zicla 7 years ago
parent
commit
f35852b696
  1. 8
      .gitignore
  2. 5
      build/doc/README_en.md
  3. 4
      code/tool/util/util_path.go
  4. 0
      main.go

8
.gitignore

@ -1,5 +1,9 @@
#idea file
.idea
dist
tmp
# develop temp folder.
tmp
# build execute file
tank

5
build/doc/README_en.md

@ -1,3 +1,6 @@
# Eyeblue Tank
> The document is comming...
> The document is comming...
go build -mod=readonly

4
code/tool/util/util_path.go

@ -40,6 +40,8 @@ func GetDevHomePath() string {
panic("cannot get dev home path.")
}
fmt.Println(file)
dir := GetDirOfPath(file)
dir = GetDirOfPath(dir)
dir = GetDirOfPath(dir)
@ -57,6 +59,8 @@ func GetHomePath() string {
}
exPath := filepath.Dir(ex)
GetDevHomePath()
//如果exPath中包含了 /private/var/folders 我们认为是在Mac的开发环境中
macDev := strings.HasPrefix(exPath, "/private/var/folders")
if macDev {

0
code/main/main.go → main.go

Loading…
Cancel
Save