Skip to content

Commit cc8c088

Browse files
committed
pip-micropython: Fix inverted condition.
1 parent e10da77 commit cc8c088

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/pip-micropython

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if [ "$1" != "install" ]; then
1212
fi
1313
shift
1414

15-
if [ -n "$TMPDIR" ]; then
15+
if [ -z "$TMPDIR" ]; then
1616
TMPDIR=/tmp
1717
fi
1818
TMPVENV="$TMPDIR/pip-micropy-venv"

0 commit comments

Comments
 (0)