bttk
bttk
I had this problem with skaffold importing `"gopkg.in/russross/blackfriday.v2"` My workaround is to use a `replace` directive in my `go.mod`: ``` replace gopkg.in/russross/blackfriday.v2 => github.com/russross/blackfriday/v2 v2.0.1 ```
@mwat56 I saw the same error At first I thought it was an error in the module path, but [go docs](https://golang.org/cmd/go/#hdr-Module_compatibility_and_semantic_versioning) say it is an exception for paths in gopkg.in...
I had this functionality in mind for some time now, as seen in _Features_ in `README.md`: - [ ] Installs a directory tree. - [ ] Renames installed files Focusing...
The build environment is supplied by bazel (in the WORKSPACE file) - you don't need golang installed on your system for bazel to build Go code. I'm considering Python as...
Can you try `run` instead of `build`? ``` bazel run -c opt //:install_foo -- ~/test ```
@mpvl: How should we understand the status of the evaluator rework? If I have a regression in my project when I go from v0.4.3 to v0.5.0-beta.5 similar to the ones...
I think I've run into a similar issue. I spent a few hours debugging my workflow until I saw this: ``` $ cue def ./tmp/*.cue cycle error {...} $ cue...
This is slightly difficult for me to tackle - I don't have any non-linux machines where I could develop this. I think the best way for me to fix it...