Closed fmoor closed 4 years ago
I had to do the following to go get the golang driver while the repo is private.
Can you figure out how you can add that to https://github.com/edgedb/webapp-bench/blob/master/Makefile (perhaps the "go" target?)
Can you figure out how you can add that to https://github.com/edgedb/webapp-bench/blob/master/Makefile (perhaps the "go" target?)
I can do that, but the git config
part needs to be --global
. Doing that in a Makefile feels invasive. I'll try to revert the config change or something :thinking:
I can do that, but the git config part needs to be --global. Doing that in a Makefile feels invasive. I'll try to revert the config change or something 🤔
Wait.. you only need that because the repo is private? Let's just make it public ;)
I was able to update the Makefile so that it works with a private repo. No git config update necessary.
Awesome, thanks!
I had to do the following to
go get
the golang driver while the repo is private.