LK4D4 / vndr

Stupid vendoring tool
Apache License 2.0
147 stars 33 forks source link

Dot imports (Ginkgo) are ignored #61

Open runcom opened 6 years ago

runcom commented 6 years ago

Dot imports are ignored, reproduce with test below:

main

package main

import (
    "fmt"

    . "github.com/onsi/ginkgo"
)

func main() {
    fmt.Println("bug")
}

vendor.conf

github.com/onsi/ginkgo master

@LK4D4 PTAL

LK4D4 commented 6 years ago

@runcom it works for me with go version go1.9.2 linux/amd64. What's your OS and go version?