Browse Source

Fix golint import in travis.yml

Frédéric Guillot 7 years ago
parent
commit
234b3710d4
2 changed files with 2 additions and 2 deletions
  1. 1 1
      .travis.yml
  2. 1 1
      model/feed_test.go

+ 1 - 1
.travis.yml

@@ -10,7 +10,7 @@ go:
   - "1.11"
 before_install:
   - npm install -g jshint
-  - go get -u github.com/golang/lint/golint
+  - go get -u golang.org/x/lint/golint
 script:
   - jshint ui/static/js/*.js
   - make lint

+ 1 - 1
model/feed_test.go

@@ -2,7 +2,7 @@
 // Use of this source code is governed by the Apache 2.0
 // license that can be found in the LICENSE file.
 
-package model // import "miniflux.app/reader/model"
+package model // import "miniflux.app/model"
 
 import (
 	"testing"