You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sed --in-place 's|import "k8s.io/apiextensions-apiserver/|//import "k8s.io/apiextensions-apiserver/|' k8s.io/api/core/v1/generated.proto
The --in-place flag in sed doesn't work in the BSD version. Since macOS is based on BSD, the build fails at that step. Instead, we could use -i <extension> which works both on the GNU and BSD versions of sed.
The text was updated successfully, but these errors were encountered:
Currently, the engine cannot be built in
macOS
as-is. In particular, the problem seems to lie with this line in the proto/k8s/Makefile.seldon-core/proto/k8s/Makefile
Line 5 in ed63ed7
The
--in-place
flag insed
doesn't work in the BSD version. Since macOS is based on BSD, the build fails at that step. Instead, we could use-i <extension>
which works both on the GNU and BSD versions ofsed
.The text was updated successfully, but these errors were encountered: