pip-micropython: Fix inverted condition.

This commit is contained in:
Paul Sokolovsky 2014-04-15 02:32:41 +03:00
parent e10da77a5c
commit cc8c0882a0

View File

@ -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"