Merge branch 'master' of github.com:micropython/micropython
This commit is contained in:
commit
3bb8663282
|
@ -1 +1 @@
|
|||
print({1}.union({2}))
|
||||
print(sorted({1}.union({2})))
|
||||
|
|
|
@ -6,6 +6,12 @@
|
|||
# ports (if PIP_MICROPY_DEST environment var is set).
|
||||
#
|
||||
|
||||
if [ "$1" != "install" ]; then
|
||||
echo "Only install command is supported currently"
|
||||
exit 1
|
||||
fi
|
||||
shift
|
||||
|
||||
if [ -n "$PIP_MICROPY_DEST" ]; then
|
||||
dest="$PIP_MICROPY_DEST"
|
||||
echo "Destination snapshot directory: $dest"
|
||||
|
|
Loading…
Reference in New Issue