Browse Source

pip-micropython: Fix inverted condition.

pull/488/head
Paul Sokolovsky 11 years ago
parent
commit
cc8c0882a0
  1. 2
      tools/pip-micropython

2
tools/pip-micropython

@ -12,7 +12,7 @@ if [ "$1" != "install" ]; then
fi
shift
if [ -n "$TMPDIR" ]; then
if [ -z "$TMPDIR" ]; then
TMPDIR=/tmp
fi
TMPVENV="$TMPDIR/pip-micropy-venv"

Loading…
Cancel
Save