From 8337c92f45cb8e7b2ccc6089ffe5d4ca2df57511 Mon Sep 17 00:00:00 2001 From: Dan Ballard Date: Wed, 28 Oct 2020 15:43:16 -0700 Subject: [PATCH] log assetFolder, use sperator rune --- main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 5ecf927c..e3cb5a35 100644 --- a/main.go +++ b/main.go @@ -167,8 +167,9 @@ func mainUi(flagLocal bool, flagClientUI bool) { if runtime.GOOS == "windows" { dir = "/" + dir } - gcd.SetAssetPath("file://" + filepath.Join(dir, "assets") + "/") + gcd.SetAssetPath("file://" + filepath.Join(dir, "assets") + string(filepath.Separator)) } + log.Infof("gcd.assetPath = '%v'\n", gcd.AssetPath()) if buildVer != "" { gcd.SetVersion(buildVer)