Jelte Fennema-Nio
Jelte Fennema-Nio
@Geal can this be merged?
@Geal could this be merged please?
I'm not sure how testing works in javascript, but it should not match against strings like these: ``` blabla \\ this is _super \\ _super ``` And it should match...
This test should probably be added to the actual tests as well.
Hmm, it should probably fallback to copying and removing in that case. As a workaround for now you can use the current `vg` master. Then you can set the `VIRTUALGO_ROOT`...
The problem is that `vg` runs the go version of `mv $yourgoproject/vendor $VIRTUALGO_ROOT/$VIRTUALGO/src`. But `mv` fails when the source and target are not on the same filesystem. So to workaround...
Good question! By putting them in `required` of `Gopkg.toml` you are already pinning them in `Gopkg.lock`. The version is only updated if you run `vg ensure -update` or `vg ensure...
I'm asking @sdboyer about this on slack to confirm, but I'm quite sure everything that is in the `required` list won't be pruned. Because that's the way you can insert...
I got a response in the #vendor slack channel: >I just tried it myself to see how dep prune behaves with required executable. So, I created a new project and...
I think it indeed makes sense to make the path absolute before storing. If you want to take a stab at it let me know, otherwise I think I'll fix...