Skip to content

Commit

Permalink
Merge pull request #11 from 3c7/master
Browse files Browse the repository at this point in the history
Clarify the use of python2's virtualenv package
  • Loading branch information
gaelmuller committed Mar 29, 2017
2 parents ad30857 + 8e1aa78 commit 74c0b9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion utils/run.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if exist %VIRTUALENV% (
echo [+] Using existing virtualenv.
) ELSE (
echo [+] Creating virtualenv...
call virtualenv %VIRTUALENV% > nul
call python -mvirtualenv %VIRTUALENV% > nul
)

call %VIRTUALENV%\Scripts\activate
Expand Down
2 changes: 1 addition & 1 deletion utils/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [ -d "$VIRTUALENV" ]; then
echo "[+] Using existing virtualenv."
else
echo "[+] Creating virtualenv..."
virtualenv "$VIRTUALENV" > /dev/null
python2 -mvirtualenv "$VIRTUALENV" > /dev/null
fi

. "$VIRTUALENV/bin/activate"
Expand Down

0 comments on commit 74c0b9e

Please sign in to comment.