Skip to content

Commit ca32155

Browse files
authored
fix: Update Makefile to cd into python dir before running commands (#2437)
Signed-off-by: Achal Shah <[email protected]>
1 parent 163cbb4 commit ca32155

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ package-protos:
4646
cp -r ${ROOT_DIR}/protos ${ROOT_DIR}/sdk/python/feast/protos
4747

4848
compile-protos-python:
49-
python sdk/python/setup.py build_python_protos
49+
cd sdk/python && python setup.py build_python_protos
5050

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

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

138138
compile-go-feature-server: compile-protos-go
139139
go mod tidy

0 commit comments

Comments
 (0)