Skip to content

Commit

Permalink
work around long shebang line pypa/virtualenv#596
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldallen committed Jul 10, 2019
1 parent f7319d7 commit 96d11db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ venv.${IAM} : ${VENV} requirements.txt

${VENV} :
python3 -m venv venv.${IAM}
${ACT} pip install --upgrade pip
${ACT} pip install --requirement requirements.txt
${ACT} python3 venv.${IAM}/bin/pip install --upgrade pip
${ACT} python3 venv.${IAM}/bin/pip install --requirement requirements.txt

test : ${VENV}
${ACT} pytest

clean :
clean :
rm -rfv venv.${IAM}
find * -name '*~' | sort | xargs -L 1 rm -v
find * -name '*~' | sort | while read t ; do rm -v "${t}" ; done

0 comments on commit 96d11db

Please sign in to comment.