So I am working on a Go Project using the Heroku CLI
Now, whenever I want to heroku local I have to first of all do go build -o bin/myappName.exe -v.
Is there a way to automate the go build -o bin/myappName.exe -v command, so that whenever I do
heroku local then go build -o bin/myappName.exe -v happens automatically before the local deployment.
Thanks alot.