Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
cc8c0882
Commit
cc8c0882
authored
Apr 15, 2014
by
Paul Sokolovsky
Browse files
pip-micropython: Fix inverted condition.
parent
e10da77a
Changes
1
Hide whitespace changes
Inline
Side-by-side
tools/pip-micropython
View file @
cc8c0882
...
...
@@ -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"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment