Skip to content

Commit

Permalink
[core] Fix skipped pip install if system python has same libs preinst…
Browse files Browse the repository at this point in the history
…alled (#2258)
  • Loading branch information
wing2fly committed Jun 21, 2021
1 parent d44aff8 commit 58ebb6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -151,7 +151,7 @@ desktop: virtual-env
@if [ "$(PYTHON_VER)" = "python2.7" ] && [ "$(findstring apps,$(MAKECMDGOALS))" = "apps" ]; then \
echo "--- start installing PIP_MODULES"; \
$(ENV_PIP) install --upgrade pip; \
$(ENV_PIP) install $(PIP_MODULES); \
$(ENV_PIP) install --upgrade --force-reinstall $(PIP_MODULES); \
echo "--- done installing PIP_MODULES"; \
else echo "--- skip installing PIP_MODULES"; \
fi
Expand Down

0 comments on commit 58ebb6c

Please sign in to comment.