Skip to content

Commit e4b27a9

Browse files
authored
chore: fix typos in command-line output of Makefile recipe (#429)
1 parent 8f9b193 commit e4b27a9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ venv:
7070
echo "Found an inactive Python virtual environment, please activate or nuke it" && exit 1; \
7171
fi
7272
if [ -z "${PYTHON}" ]; then \
73-
echo "Creating virtual envirnoment in .venv/ for python3.10"; \
73+
echo "Creating virtual environment in .venv/ for python3.10"; \
7474
python3.10 -m venv --upgrade-deps --prompt . .venv; \
7575
else \
76-
echo "Creating virtual envirnoment in .venv/ for ${PYTHON}"; \
76+
echo "Creating virtual environment in .venv/ for ${PYTHON}"; \
7777
${PYTHON} -m venv --upgrade-deps --prompt . .venv; \
7878
fi
7979
touch .venv/pip.conf

0 commit comments

Comments
 (0)