Woops! Use our logger, not log

This commit is contained in:
Jakob Borg 2014-07-31 10:33:42 +02:00
parent 7b8c126aa1
commit 25f4fd5a19
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ func main() {
if doUpgradeCheck {
rel, err := currentRelease()
if err != nil {
log.Fatalln(err) // exits 1
l.Fatalln(err) // exits 1
}
switch compareVersions(rel.Tag, Version) {