brandonhilkert
brandonhilkert

Reputation: 4475

Workflow for developing Golang command-line

I'm looking to build my first Go command-line app. I feel really out of sorts...What would the typical workflow look like when doing something like that?

I'm attempting to write some go and then I run go build in vim and attempt to run the program with another terminal tab, but go build alone doesn't seem to build the program and install it on my system. I tried with the -i and that worked the first time, but didn't update it after.

I'm sure it's silly, but hopefully you can point me in the right direction.

Upvotes: 0

Views: 349

Answers (1)

brandonhilkert
brandonhilkert

Reputation: 4475

go build && go install did the trick!

Upvotes: 1

Related Questions