matryer / silk

Markdown based document-driven RESTful API testing.
http://silktest.org/
GNU General Public License v2.0
942 stars 69 forks source link

Missing package when building : `github.com/matryer/m` #46

Closed sgaide closed 7 years ago

sgaide commented 7 years ago

Hi Mat,

i'm new to go so this may certainly be a problem between the chair and the keyboard, but when i try to go install github.com/matryer/silk from the freshly cloned repo, i get this error :

silk/runner/run.go:17:2: cannot find package "github.com/matryer/m" in any of:
    /usr/local/Cellar/go/1.7.1/libexec/src/github.com/matryer/m (from $GOROOT)
    /Users/sgaide/dev/go/src/github.com/matryer/m (from $GOPATH)

i can find no m package in your github repos either, am i missing something ?

thanks for any help,

Sebastien

matryer commented 7 years ago

Try go get github.com/matryer/silk? http://github.com/matryer/silk%60?

It’ll clone the repo for you and put the binary into$GOPATH/bin.

On 7 Oct 2016, at 09:03, Sébastien Gaïde notifications@github.com wrote:

Hi Mat,

i'm new to go so this may certainly be a problem between the chair and the keyboard, but when i try to go install github.com/matryer/silk from the freshly cloned repo, i get this error :

silk/runner/run.go:17:2: cannot find package "github.com/matryer/m" in any of: /usr/local/Cellar/go/1.7.1/libexec/src/github.com/matryer/m (from $GOROOT) /Users/sgaide/dev/go/src/github.com/matryer/m (from $GOPATH) i can find no m package in your github repos either, am i missing something ?

thanks for any help,

Sebastien

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/matryer/silk/issues/46, or mute the thread https://github.com/notifications/unsubscribe-auth/AAGNG7gi282hvaeZR2MNxLJJBaRIpm3Nks5qxfy8gaJpZM4KQxSU.

sgaide commented 7 years ago

works perfectly ! thanks.