You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ echo$GOPATH/home/duncan/.go
$ go get -u -v github.com/bytesparadise/libasciidocgithub.com/bytesparadise/libasciidoc (download)github.com/davecgh/go-spew (download)github.com/pkg/errors (download)github.com/sirupsen/logrus (download)get "golang.org/x/sys/unix": found meta tag get.metaImport{Prefix:"golang.org/x/sys", VCS:"git", RepoRoot:"https://go.googlesource.com/sys"} at //golang.org/x/sys/unix?go-get=1get "golang.org/x/sys/unix": verifying non-authoritative meta taggolang.org/x/sys (download)get "golang.org/x/sys/internal/unsafeheader": found meta tag get.metaImport{Prefix:"golang.org/x/sys", VCS:"git", RepoRoot:"https://go.googlesource.com/sys"} at //golang.org/x/sys/internal/unsafeheader?go-get=1get "golang.org/x/sys/internal/unsafeheader": verifying non-authoritative meta tagget "gopkg.in/yaml.v2": found meta tag get.metaImport{Prefix:"gopkg.in/yaml.v2", VCS:"git", RepoRoot:"https://gopkg.in/yaml.v2"} at //gopkg.in/yaml.v2?go-get=1gopkg.in/yaml.v2 (download)github.com/alecthomas/chroma (download)github.com/dlclark/regexp2 (download)github.com/danwakefield/fnmatch (download)
and I get this stuff in my gopath, but no executable:
hello @dflock and thanks for raising this issue.
You're right, you need to run make install to get a proper binary.
I will update the docs accordingly.
@xcoulon It would be great if the canonical Go install way would be the de-facto installation method.
This currenctly works:
$ go install github.com/bytesparadise/libasciidoc/cmd/libasciidoc@latest
$ which libasciidoc
/Users/david/go/bin/libasciidoc
$ libasciidoc
libasciidoc is a tool to convert from Asciidoc to HTML
...
@xcoulon It would be great if the canonical Go install way would be the de-facto installation method.
This currenctly works:
$ go install github.com/bytesparadise/libasciidoc/cmd/libasciidoc@latest
$ which libasciidoc
/Users/david/go/bin/libasciidoc
$ libasciidoc
libasciidoc is a tool to convert from Asciidoc to HTML
...
this works, indeed, but then you don't get the proper version:
The current build instructions say to do this:
$ go get -u github.com/bytesparadise/libasciidoc
I do this and it works:
and I get this stuff in my gopath, but no executable:
After reading #687 and this, I ran this:
I now have an executable, which wasn't there before (the first result):
which works:
Not very experienced with go, so I don't know why this is?
The text was updated successfully, but these errors were encountered: