From 8e16738465b04a0a53e0c16c8374a3e5930079b8 Mon Sep 17 00:00:00 2001 From: wwqgtxx Date: Thu, 29 Jun 2023 16:40:08 +0800 Subject: [PATCH] chore: better env parsing --- constant/path.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/constant/path.go b/constant/path.go index 897dcfdc..10d143d7 100644 --- a/constant/path.go +++ b/constant/path.go @@ -6,6 +6,7 @@ import ( "os" P "path" "path/filepath" + "strconv" "strings" ) @@ -22,7 +23,7 @@ var Path = func() *path { if err != nil { homeDir, _ = os.Getwd() } - allowUnsafePath := strings.TrimSpace(os.Getenv("SKIP_SAFE_PATH_CHECK")) == "1" + allowUnsafePath, _ := strconv.ParseBool(os.Getenv("SKIP_SAFE_PATH_CHECK")) homeDir = P.Join(homeDir, ".config", Name) return &path{homeDir: homeDir, configFile: "config.yaml", allowUnsafePath: allowUnsafePath} }()