Closed sfudeus closed 4 years ago
@sfudeus Hi Stephan,
CWD
variable should have been used there, instead of the PREFIX
.Will push a new release in a bit that includes those fixes.
v1.5.17
has been pushed and is currently being built.
Please let me know if the latest commit resolves the issues found.
Edit: Seems that the GitHub CI doesn't like these changes, I'm looking into and try to check the issue on RC tags v1.5.18-rc...
. v1.5.19
fixed the CI issues.
thx, looks good so far
Hi Alex,
while trying to use your updated build setup with
promu
I stumbled over some minor issues which break our builds.a)
promu
is referenced as$(PROMU)
in the Makefile, which is only set topromu
, assuming that it lives in the path. I suggest to use either the location where you put it ($(FIRST_GOPATH)/bin/promu
) or set that as variablePROMU
b)
Makefile
assumesPREFIX
being set when callingpromu --prefix $(PREFIX)
, butPREFIX
might not be set. I suggest to add--prefix $(PREFIX)
only whenPREFIX
is set.Cheers, Stephan