Compilation instructions #70
-
I am very unfamiliar with Go. What is the procedure to compile klog? Right now I want to use a binary which supports piping data. This should be fixed as of 633ac38, and I want to use it. (Maybe overkill, but is adding compilation instructions to the README something to consider?) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I actually also thought about this today, In a nutshell, if you have Go 1.16 installed, you navigate to the |
Beta Was this translation helpful? Give feedback.
I actually also thought about this today,
will add it to the README.UPDATE: DoneIn a nutshell, if you have Go 1.16 installed, you navigate to the
src
folder and rungo build app/cli/main/klog.go
. On first run that fetches all dependencies and then builds aklog
binary. (On Windows you can add the-o klog.exe
option for convenience.)