ulikunitz / xz

Pure golang package for reading and writing xz-compressed files
Other
484 stars 45 forks source link

use of internal package github.com/ulikunitz/xz/internal/xlog not allowed #24

Closed xaionaro closed 6 years ago

xaionaro commented 6 years ago

I'm trying to build my program that uses your library and getting this error:

vendor/github.com/ulikunitz/xz/reader.go:17:2: use of internal package github.com/ulikunitz/xz/internal/xlog not allowed

The dependency:

    "github.com/ulikunitz/xz"

I added it to vendor/ using govendor add.

ulikunitz commented 6 years ago

Please check whether vendor/github.com/ulikunitz/xz/internal/xlog actually exists. I have seen reports that govendor isn't smart enough to handle those dependencies.

xaionaro commented 6 years ago

Yep, you right. A missing dependency. Thank you.