Get
The get command adds one or more packages to the current project.
nubo get <url>nubo get <url> [flags]You can pass multiple package URLs.
nubo get <url-a> <url-b>| Flag | Description |
|---|---|
-f, --force | Keep going even if a package cannot be downloaded. |
-s, --skip-init | Skip initializing package information. |
Examples
Section titled “Examples”Add a package:
nubo get github.com/example/packageAdd multiple packages:
nubo get github.com/example/a github.com/example/bContinue after failures:
nubo get github.com/example/a github.com/example/b --forceSkip package initialization:
nubo get github.com/example/package --skip-initShort flags:
nubo get github.com/example/package -f -sMissing Arguments
Section titled “Missing Arguments”If no URL is provided, Nubo prints the command help.
nubo get