Skip to content

Commit

Permalink
Custom prompt for CC venvs instead of just 'venv'
Browse files Browse the repository at this point in the history
  • Loading branch information
whisperity committed Jan 18, 2021
1 parent 310918a commit d278d82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -145,14 +145,14 @@ standalone_package: venv package

venv:
# Create a virtual environment which can be used to run the build package.
python3 -m venv venv && \
python3 -m venv venv --prompt="CodeChecker venv" && \
$(ACTIVATE_RUNTIME_VENV) && \
pip3 install -r $(CC_ANALYZER)/requirements.txt && \
pip3 install -r $(CC_WEB)/requirements.txt

venv_osx:
# Create a virtual environment which can be used to run the build package.
python3 -m venv venv && \
python3 -m venv venv --prompt="CodeChecker venv" && \
$(ACTIVATE_RUNTIME_VENV) && \
pip3 install -r $(CC_ANALYZER)/requirements_py/osx/requirements.txt && \
pip3 install -r $(CC_WEB)/requirements_py/osx/requirements.txt
Expand All @@ -170,7 +170,7 @@ pip_dev_deps:

venv_dev:
# Create a virtual environment for development.
python3 -m venv venv_dev && \
python3 -m venv venv_dev --prompt="CodeChecker venv-dev" && \
$(ACTIVATE_DEV_VENV) && $(PIP_DEV_DEPS_CMD)

clean_venv_dev:
Expand Down

0 comments on commit d278d82

Please sign in to comment.