-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Matthew Asplund <[email protected]>
- Loading branch information
Showing
9 changed files
with
37 additions
and
21 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
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
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
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 |
---|---|---|
@@ -1,13 +1,24 @@ | ||
# Install packages | ||
# Install | ||
## Overview | ||
Install packages from the public feed. | ||
``` | ||
soup install [<name>[@<version>]] | ||
``` | ||
|
||
## Synopsis | ||
`<name>[@<version>]` - An optional parameter to specify the name and optional version of the package you would like to install. If not present then the install command will install all of the packages already in the recipe. | ||
|
||
## Examples | ||
Install all of the current external dependencies and build extension packages. | ||
``` | ||
soup install | ||
soup install <name> | ||
soup install <name>@<version> | ||
``` | ||
|
||
## Description | ||
Install the latest `json11` package. | ||
``` | ||
soup install json11 | ||
``` | ||
|
||
Used to install individual packages or all register dependencies for a given recipe. | ||
Install version `1.0.0` of the `json11` package. | ||
``` | ||
soup install [email protected] | ||
``` |
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 |
---|---|---|
@@ -1,11 +1,12 @@ | ||
# Install packages | ||
|
||
## Synopsis | ||
|
||
# Publish | ||
## Overview | ||
Pack the current recipe folder and publish its contents to the official feed. | ||
``` | ||
soup publish | ||
``` | ||
|
||
## Description | ||
|
||
Package up the contents of the current recipe and publish its contents to the official feed. | ||
## Examples | ||
Publish the latest version of the package in the current folder. | ||
``` | ||
soup publish | ||
``` |
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
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
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
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