Delete
The del command removes one or more packages from the current project.
nubo del <url>nubo del <url> [flags]You can pass multiple package URLs.
nubo del <url-a> <url-b>| Flag | Description |
|---|---|
-f, --force | Keep going even if a package cannot be deleted. |
--cleanup | Clean the package from disk after deletion. |
Examples
Section titled “Examples”Delete a package:
nubo del github.com/example/packageDelete multiple packages:
nubo del github.com/example/a github.com/example/bContinue after failures:
nubo del github.com/example/a github.com/example/b --forceDelete and clean from disk:
nubo del github.com/example/package --cleanupMissing Arguments
Section titled “Missing Arguments”If no package URL is provided, Nubo prints the command help.
nubo del