-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cli/README.md: add src after GOPATH #625 #633
Conversation
Zally should be cloned in `$GOPATH/src`, and not to `$GOPATH`, as per golang/dep#911. Otherwise dep won't work: ``` $ cd $GOPATH/github.com/zalando/zally/cli/zally/ $ dep ensure root project import: $GOPATH/github.com/zalando/zally/cli/zally is not within any GOPATH/src ``` where as `$GOPATH/src/github.com/zalando/zally/cli/zally` does work with dep.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for fixing it up!
@@ -11,7 +11,7 @@ Just make sure that an issue describing the bug or feature does not already exis | |||
## Pull Requests | |||
Follow these steps to contribute your work to Zally: | |||
|
|||
1. [Open an issue](https://github.com/zalando/zally/issues) describing the problem or proposed feature. Ask maitainers (in the issue thread) to assign the issue to you so we know who is working on what. | |||
1. [Open an issue](https://github.com/zalando/zally/issues) describing the problem or proposed feature. Ask maintainers (in the issue thread) to assign the issue to you so we know who is working on what. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch!
07bff90
to
169ba7d
Compare
Codecov Report
@@ Coverage Diff @@
## master #633 +/- ##
=========================================
Coverage 83.31% 83.31%
Complexity 816 816
=========================================
Files 151 151
Lines 2218 2218
Branches 308 308
=========================================
Hits 1848 1848
Misses 234 234
Partials 136 136 Continue to review full report at Codecov.
|
👍 |
@maxim-tschumak , @mfellner could you please give another 👍 ? |
@kingslef thanks! |
👍 |
Zally should be cloned in
$GOPATH/src
, and not to$GOPATH
, as pergolang/dep#911. Otherwise dep won't work:
where as
$GOPATH/src/github.com/zalando/zally/cli/zally
does work with dep.Related to #625.