Some issues seem to have been broken in the build / install process. - #9
Conversation
* go.mod now specifies the point version of go to avoid toolchain errors. Without the full version spelled out, some versions of go can report a "toolchain not available" error during the `make build` step. * PREFIX can now be overridden by an environment variable. The PREFIX environment setting was being ignored, so installs always went to the default location of /usr/local.
📝 WalkthroughWalkthroughThis pull request modifies two files. The Makefile changes the PREFIX variable from a hard-coded assignment to a conditional assignment using the 🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
go.modnow specifies the point version of go to avoid toolchain errors.Without the full version spelled out, some versions of go can report a "toolchain not available" error during the
make buildstep.PREFIX can now be overridden by an environment variable.
The PREFIX environment setting was being ignored, so installs always went to the default location of
/usr/local.