We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68f63b4 commit 3497f58Copy full SHA for 3497f58
updater/updater.go
@@ -12,13 +12,12 @@ import (
12
"os"
13
"path/filepath"
14
"runtime"
15
- "strings"
16
"time"
17
18
log "github.com/Sirupsen/logrus"
+ "github.com/inconshreveable/go-update"
19
"github.com/kr/binarydist"
20
21
- "github.com/inconshreveable/go-update"
22
"github.com/kardianos/osext"
23
)
24
@@ -257,8 +256,8 @@ func (u *Updater) update() error {
257
256
}
258
259
func (u *Updater) wantUpdate() bool {
260
- if strings.Contains(u.CurrentVersion, "dev") {
261
- return false
262
- }
+ // if strings.Contains(u.CurrentVersion, "dev") {
+ // return false
+ // }
263
return true
264
0 commit comments