-
-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathvendor.go
More file actions
18 lines (15 loc) · 683 Bytes
/
vendor.go
File metadata and controls
18 lines (15 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cmd
import (
"github.com/spf13/cobra"
)
// vendorCmd executes 'atmos vendor' CLI commands
var vendorCmd = &cobra.Command{
Use: "vendor",
Short: "Manage external dependencies for components or stacks",
Long: `This command manages external dependencies for Atmos components or stacks by vendoring them. Vendoring involves copying and locking required dependencies locally, ensuring consistency, reliability, and alignment with the principles of immutable infrastructure.`,
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Args: cobra.NoArgs,
}
func init() {
RootCmd.AddCommand(vendorCmd)
}