-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package Manager Setup command (
Npm
Pnpm
Yarn
Pip
Pipenv
`Po…
…etry` `Go` `Nuget` `Dotnet` `Docker` `Podman` `Maven` `Gradle`) (#2738)
- Loading branch information
1 parent
6cc1bf1
commit 738836b
Showing
14 changed files
with
533 additions
and
65 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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package setup | ||
|
||
import ( | ||
"github.com/jfrog/jfrog-cli-artifactory/artifactory/commands/setup" | ||
"strings" | ||
) | ||
|
||
var Usage = []string{"setup [command options]", | ||
"setup <package manager> [command options]"} | ||
|
||
func GetDescription() string { | ||
return "An interactive command to configure your local package manager (e.g., npm, pip) to work with JFrog Artifactory." | ||
} | ||
|
||
func GetArguments() string { | ||
return ` package manager | ||
The package manager to configure. Supported package managers are: ` + strings.Join(setup.GetSupportedPackageManagersList(), ", ") + "." | ||
} |
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
Oops, something went wrong.