Thomas Tardigrade
Thomas Tardigrade
Easiest way would to reference this from the Golang FAQ wiki: https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module The wiki implies that the suggested "workaround" is actually a valid way in go to manage tools dependencies...
This also seems related to #325.
This shouldn't be a problem for projects using go 1.14+ https://go.dev/ref/mod#vendoring >If the vendor directory is present in the main module’s root directory, it will be used automatically if the...
@GaikwadPratik , Have you tried zerolog.MultiLevelWriter instead of io.MultiWriter? https://github.com/rs/zerolog#multiple-log-output
I ran into this same issue. My install of Ubuntu 20.04 did not have gnome-flashback installed. gnome-flashback can be installed by running: `sudo apt install gnome-session-flashback` Once installed, either log...
If the window won't close automatically then it should be able to handle receiving input. Post commands shouldn't be required to do a read or be long running as mentioned...
> I managed to enable it using these parameters: > `golangci-lint run --exclude-use-default=false --disable-all --enable=golint` that turns back on more than just the doc comment requirements. It would be nice...
I was looking to use this library for work also, but am seeing this same issue. Looks to me like the library is not parsing the path given to ArtifactoryPath...
I did some more digging around. Looks like support for custom base URIs was added, but only when using the config file. This work was done in commit 2f1656a. The...