-
Notifications
You must be signed in to change notification settings - Fork 454
godep restore unrecognized path #258
Comments
@windweller I can't reproduce this error. To test I put together 2 sample projects in my $GOPATH like so..
Can you provide steps to reproduce? |
Oh wait this was about |
Wait..so if I include all the code (library code and source code) in Can I instead run the command already in my Dockerfile: |
So while it's technically possible to do so in Go, atm godep (because of it's use of the go toolings vcs library) only fully supports packages in You do not need to run |
The way I would do this is ... When writing code use When installing code run |
OK! Good to know, so I just need to change my Or I'll do it your way. Thanks. |
I have faced the same issue. Are there plans to fix this? |
Hi,
I'm developing two go projects side by side, and one project is dependent on the other, and must reflect the changes made immediately (so no uploading to github and pull down from there). Both the my projects (projA, projB) are in my GOPATH locally, so I can invoke something like:
Without any problem (at least not according to my IDE - intelliJ). Problem starts when I want to package it using godep and ship it to a remote server (actually even locally). I run
godep save
to generate JSON file and workspace directory. Then I rungodep restore
locally, and it tells me:When I ship it to the server, same error happens. As reason stated above, I really want to be able to have projB reflect projA's changes locally (by typing
godep save
orgodep update
). But what is this error and how can I get rid of it?P.S.: I use docker to ship code, and this is a part of my docker file:
The text was updated successfully, but these errors were encountered: