Skip to content

Commit

Permalink
docs/reference/packages: Fix description of --target option in mip.
Browse files Browse the repository at this point in the history
Descripton of mip usage with micropython port suggest using it like this:

    ./micropython -m mip install --target=third-party pkgname

But it should be called without equal sign:

    ./micropython -m mip install --target third-party pkgname

Signed-off-by: [email protected]
  • Loading branch information
honza-klu authored and dpgeorge committed Oct 31, 2024
1 parent 787c424 commit 0e490b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/reference/packages.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ On the Unix port, ``mip`` can be used at the REPL as above, and also by using ``
$ ./micropython -m mip install pkgname-or-url
$ ./micropython -m mip install pkgname-or-url@version

The ``--target=path``, ``--no-mpy``, and ``--index`` arguments can be set::
The ``--target path``, ``--no-mpy``, and ``--index`` arguments can be set::

$ ./micropython -m mip install --target=third-party pkgname
$ ./micropython -m mip install --target third-party pkgname
$ ./micropython -m mip install --no-mpy pkgname
$ ./micropython -m mip install --index https://host/pi pkgname

Expand Down

0 comments on commit 0e490b7

Please sign in to comment.