Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in Makefile #2782

Merged
merged 1 commit into from
May 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ client: learning
cd $(CLIENT_DIR) && \
python3 -m pip install -r requirements.txt -r requirements-dev.txt --user && \
export PATH=$(PATH):$(HOME)/.local/bin && \
python3 setup.py build_ext --inplace --user
python3 -m pip install --user --no-build-isolation --editable $(CLIENT_DIRNT_DIR)
python3 setup.py build_ext --inplace --user && \
python3 -m pip install --user --no-build-isolation --editable $(CLIENT_DIR) && \
rm -rf $(CLIENT_DIR)/*.egg-info

coordinator: client
cd $(COORDINATOR_DIR) && \
python3 -m pip install -r requirements.txt -r requirements-dev.txt --user && \
python3 setup.py build_builtin
python3 -m pip install --user --editable $(COORDINATOR_DIR)
python3 setup.py build_builtin && \
python3 -m pip install --user --editable $(COORDINATOR_DIR) && \
rm -rf $(COORDINATOR_DIR)/*.egg-info

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