-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
122e459
commit d9aefe4
Showing
1 changed file
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -177,9 +177,9 @@ UI extensions can be installed into UI applications using the `c8y ui extensions | |
|
||
The follow sections detail the common use-cases. | ||
|
||
### Adding an extension | ||
### Installing an extension | ||
|
||
A new extension can be added to an application. Any existing extensions already installed in the application will not be modified. | ||
A new extension can be added to an existing UI application using the following command. The command will preserve any existing extensions, and it will only add a new one (or update the version if already installed). | ||
|
||
```sh | ||
c8y ui extensions install --application devicemanagement --extension myext | ||
|
@@ -191,7 +191,7 @@ By default the `latest` version is chosen, but a version or tag can be provided | |
c8y ui extensions install --application devicemanagement --extension myext@latest | ||
``` | ||
|
||
Or install an explicit version: | ||
Or install an explicit extension version: | ||
|
||
```sh | ||
c8y ui extensions install --application devicemanagement --extension [email protected] | ||
|
@@ -220,4 +220,3 @@ Similar to the previous example, you can also remove all extensions by also usin | |
```sh | ||
c8y ui extensions install --application devicemanagement --replace | ||
``` | ||
|