fix the bee path

This commit is contained in:
wangle 2020-08-02 17:00:29 +08:00
parent e539c34ea0
commit 40a90af5be
1 changed files with 4 additions and 1 deletions

View File

@ -512,7 +512,10 @@ func NoticeUpdateBee() {
}
func newVersion() {
workPath := GetBeeWorkPath()
hs, _, workPath := SearchGOPATHs(config.GitRemotePath)
if hs == false {
beeLogger.Log.Warn("Fail to open repository")
}
repo, err := git.OpenRepository(workPath)
if err != nil {
beeLogger.Log.Fatalf("Fail to open repository, err: %s", err)