Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Command = &cobra.Command{ Use: "install [repo]", Short: "Install the active profile", Long: "Clones all repositories defined in the active profile to their specified paths. If a repository already exists, it will be skipped. Repositories are cloned concurrently for better performance. Pass a repository name to install only that repository.", Args: cobra.MaximumNArgs(1), RunE: func(cmd *cobra.Command, args []string) error { err := raid.WithMutationLock(func() error { if len(args) == 1 { return raid.InstallRepo(args[0]) } return raid.Install(maxThreads) }) if err != nil { return errs.Wrap(err) } return nil }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.