Skip to content

Commit d2c7d2e

Browse files
authored
Fix typo in Makefile (#2782)
1 parent 3606b85 commit d2c7d2e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ client: learning
7373
cd $(CLIENT_DIR) && \
7474
python3 -m pip install -r requirements.txt -r requirements-dev.txt --user && \
7575
export PATH=$(PATH):$(HOME)/.local/bin && \
76-
python3 setup.py build_ext --inplace --user
77-
python3 -m pip install --user --no-build-isolation --editable $(CLIENT_DIRNT_DIR)
76+
python3 setup.py build_ext --inplace --user && \
77+
python3 -m pip install --user --no-build-isolation --editable $(CLIENT_DIR) && \
7878
rm -rf $(CLIENT_DIR)/*.egg-info
7979

8080
coordinator: client
8181
cd $(COORDINATOR_DIR) && \
8282
python3 -m pip install -r requirements.txt -r requirements-dev.txt --user && \
83-
python3 setup.py build_builtin
84-
python3 -m pip install --user --editable $(COORDINATOR_DIR)
83+
python3 setup.py build_builtin && \
84+
python3 -m pip install --user --editable $(COORDINATOR_DIR) && \
8585
rm -rf $(COORDINATOR_DIR)/*.egg-info
8686

8787
# We deliberately make $(ENGINE) depends on a file, and $(ENGINE)-install depends on $(ENGINE),

0 commit comments

Comments
 (0)