We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f9b193 commit e4b27a9Copy full SHA for e4b27a9
1 file changed
Makefile
@@ -70,10 +70,10 @@ venv:
70
echo "Found an inactive Python virtual environment, please activate or nuke it" && exit 1; \
71
fi
72
if [ -z "${PYTHON}" ]; then \
73
- echo "Creating virtual envirnoment in .venv/ for python3.10"; \
+ echo "Creating virtual environment in .venv/ for python3.10"; \
74
python3.10 -m venv --upgrade-deps --prompt . .venv; \
75
else \
76
- echo "Creating virtual envirnoment in .venv/ for ${PYTHON}"; \
+ echo "Creating virtual environment in .venv/ for ${PYTHON}"; \
77
${PYTHON} -m venv --upgrade-deps --prompt . .venv; \
78
79
touch .venv/pip.conf
0 commit comments