You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.
Currently, each tool is installed using go install command which is pretty limiting. Certain tools require arguments to be passed in when building them. In order to accommodate that, the go build command needs to be used.
Solution
Allow for passing extra parameters when building each tool which can be defined in the tools.json.
Yes, I agree it would make it much simpler, however, if it is likely that other parameters will be needed in the future, it might make sense to implement it more generically. What do you think?
Currently, each tool is installed using
go install
command which is pretty limiting. Certain tools require arguments to be passed in when building them. In order to accommodate that, thego build
command needs to be used.Solution
Allow for passing extra parameters when building each tool which can be defined in the tools.json.
For example:
PreParams are the arguments passed in just after
go build
command and before the path and other arguments, which in this example will result in:The text was updated successfully, but these errors were encountered: