try path join only for qml path
the build was successful Details

This commit is contained in:
Dan Ballard 2020-10-28 15:50:19 -07:00
parent 8337c92f45
commit f59240e6c8
1 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@ import (
mrand "math/rand"
"os"
"os/user"
"path"
"path/filepath"
"runtime"
"time"
@ -167,7 +168,7 @@ func mainUi(flagLocal bool, flagClientUI bool) {
if runtime.GOOS == "windows" {
dir = "/" + dir
}
gcd.SetAssetPath("file://" + filepath.Join(dir, "assets") + string(filepath.Separator))
gcd.SetAssetPath("file://" + path.Join(dir, "assets") + "/") // + string(filepath.Separator))
}
log.Infof("gcd.assetPath = '%v'\n", gcd.AssetPath())