Skip to content

Commit

Permalink
fix: Update Makefile to cd into python dir before running setup.py co…
Browse files Browse the repository at this point in the history
…mmands

Signed-off-by: Achal Shah <achals@gmail.com>
  • Loading branch information
achals committed Mar 22, 2022
1 parent 5e6d9bc commit a5191c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ package-protos:
cp -r ${ROOT_DIR}/protos ${ROOT_DIR}/sdk/python/feast/protos

compile-protos-python:
python sdk/python/setup.py build_python_protos
cd sdk/python && python setup.py build_python_protos

install-python:
cd sdk/python && python -m piptools sync requirements/py$(PYTHON)-requirements.txt
Expand Down Expand Up @@ -133,7 +133,7 @@ install-protoc-dependencies:
pip install grpcio-tools==1.34.0

compile-protos-go: install-go-proto-dependencies install-protoc-dependencies
python sdk/python/setup.py build_go_protos
cd sdk/python && python setup.py build_go_protos

compile-go-feature-server: compile-protos-go
go mod tidy
Expand Down

0 comments on commit a5191c9

Please sign in to comment.