mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-22 08:25:38 +00:00
travis: more strict golint
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
52a31746bf
commit
3c52e89277
2 changed files with 2 additions and 2 deletions
|
@ -15,5 +15,5 @@ install: true
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- go vet -x ./...
|
- go vet -x ./...
|
||||||
- golint ./...
|
- golint -set_exit_status ./...
|
||||||
- go test -v ./...
|
- go test -v ./...
|
||||||
|
|
|
@ -78,7 +78,7 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// -p <path>
|
// -p <path>
|
||||||
var rootPath string = "."
|
var rootPath = "."
|
||||||
if *flPath != "" {
|
if *flPath != "" {
|
||||||
rootPath = *flPath
|
rootPath = *flPath
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue