Skip to content

Commit 3e8426e

Browse files
authored
Fix issue with cd'ing in Makefile (#6206)
2 parents 8513165 + 34c265c commit 3e8426e

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
@@ -173,7 +173,7 @@ install-runners:
173173
@echo "================== INSTALL RUNNERS ===================="
174174
@echo ""
175175
# NOTE: We use xargs to speed things up by installing runners in parallel
176-
echo -e "$(COMPONENTS_RUNNERS)" | tr -d "\n" | xargs -P $(XARGS_CONCURRENCY) -d " " -n1 -i sh -c ". $(VIRTUALENV_DIR)/bin/activate; cd {} ; python setup.py develop --no-deps"
176+
echo -e "$(COMPONENTS_RUNNERS)" | tr -d "\n" | xargs -P $(XARGS_CONCURRENCY) -d " " -n1 -i sh -c ". $(VIRTUALENV_DIR)/bin/activate; cd $$(pwd)/{} ; python setup.py develop --no-deps"
177177
#@for component in $(COMPONENTS_RUNNERS); do \
178178
# echo "==========================================================="; \
179179
# echo "Installing runner:" $$component; \
@@ -187,7 +187,7 @@ install-mock-runners:
187187
@echo "================== INSTALL MOCK RUNNERS ===================="
188188
@echo ""
189189
# NOTE: We use xargs to speed things up by installing runners in parallel
190-
echo -e "$(MOCK_RUNNERS)" | tr -d "\n" | xargs -P $(XARGS_CONCURRENCY) -d " " -n1 -i sh -c ". $(VIRTUALENV_DIR)/bin/activate; cd {} ; python setup.py develop --no-deps"
190+
echo -e "$(MOCK_RUNNERS)" | tr -d "\n" | xargs -P $(XARGS_CONCURRENCY) -d " " -n1 -i sh -c ". $(VIRTUALENV_DIR)/bin/activate; cd $$(pwd)/{} ; python setup.py develop --no-deps"
191191
#@for component in $(MOCK_RUNNERS); do \
192192
# echo "==========================================================="; \
193193
# echo "Installing mock runner:" $$component; \

0 commit comments

Comments
 (0)