UnnoTed / fileb0x

a better customizable tool to embed files in go; also update embedded files remotely without restarting the server
MIT License
634 stars 53 forks source link

can't install on windows: can't find doublestar #50

Closed coolaj86 closed 5 years ago

coolaj86 commented 5 years ago

I'm not clear as to why yet, but when I try to install on windows, it can't find the doublestar module:

C:\Users\aj\github.com\UnnoTed\fileb0x>go install .
custom\custom.go:17:2: unknown import path "github.com/bmatcuk/doublestar": cannot find module providing package github.com/bmatcuk/doublestar

Also won't build on windows:

C:\Users\aj\github.com\UnnoTed\fileb0x> go mod vendor
C:\Users\aj\github.com\UnnoTed\fileb0x>go build -mod=vendor
custom\custom.go:17:2: cannot find package "." in:
        C:\Users\aj\github.com\UnnoTed\fileb0x\vendor\github.com\bmatcuk\doublestar

And go get fails within fileb0x:

C:\Users\aj\github.com\UnnoTed\fileb0x>go get
go build github.com/bmatcuk/doublestar: no Go files in

Yet this doesn't seem to be a direct problem with doublestar because go get github.com/bmatcuk/doublestar works just fine. Very confused...

coolaj86 commented 5 years ago

There's also an issue with <= go1.11.3 and symlink checksums in go.mod that was breaking a lot of stuff recently that maybe is related.

I'm closing this out because there's not likely anything anyone that is involved can do about it. These things are above our heads.