forked from sugarme/gotch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.go
More file actions
39 lines (32 loc) · 673 Bytes
/
Copy pathinit.go
File metadata and controls
39 lines (32 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package gotch
import (
"fmt"
"log"
"os"
"strconv"
)
var (
CachedDir string = "NOT_SETTING"
gotchEnvKey string = "GOTCH_CACHE"
gotchDebugKey string = "GOTCH_DEBUG"
Debug bool = false
)
func init() {
homeDir := os.Getenv("HOME")
CachedDir = fmt.Sprintf("%s/.cache/gotch", homeDir) // default dir: "{$HOME}/.cache/gotch"
initEnv()
}
func initEnv() {
if v, err := strconv.ParseBool(os.Getenv(gotchDebugKey)); err == nil {
Debug = v
}
val := os.Getenv(gotchEnvKey)
if val != "" {
CachedDir = val
}
if _, err := os.Stat(CachedDir); os.IsNotExist(err) {
if err := os.MkdirAll(CachedDir, 0755); err != nil {
log.Fatal(err)
}
}
}