1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-19 13:54:23 +01:00

CLI: library manager, man page updated

This commit is contained in:
Federico Fissore 2015-04-09 15:34:34 +02:00
parent f0cc644d8f
commit df1b82ac20

View File

@ -31,7 +31,7 @@ SYNOPSIS
*arduino* [*--install-boards* __package name__:__platform architecture__[:__version__]]
*arduino* [*--install-library* __library name__[:__version__]]
*arduino* [*--install-library* __library name__[:__version__][,__library name__[:__version__],__library name__[:__version__]]
DESCRIPTION
-----------
@ -73,6 +73,7 @@ ACTIONS
*--install-library* __library name__[:__version__]::
Fetches available libraries list and install the specified one. If __version__ is omitted, the latest is installed. If a library with the same version is already installed, nothing is installed and program exits with exit code 1. If a library with a different version is already installed, it's replaced.
Multiple libraries can be specified, separated by a comma.
OPTIONS
-------
@ -259,6 +260,10 @@ Install Bridge library version 1.0.0
arduino --install-library "Bridge:1.0.0"
Install Bridge and Servo libraries
arduino --install-library "Bridge:1.0.0,Servo:1.2.0"
HISTORY
-------
1.5.2::