diff --git a/tools/pip-micropython b/tools/pip-micropython
index e27e859425b5cd0eeaf206417c2faa9715349aa6..fab880983962d404886ae4c43bcdfffcec2a8ef2 100755
--- a/tools/pip-micropython
+++ b/tools/pip-micropython
@@ -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"