mirror of https://github.com/databricks/cli.git
27 lines
702 B
Go
27 lines
702 B
Go
package bundle
|
|
|
|
import (
|
|
"github.com/databricks/cli/libs/template"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var initCmd = &cobra.Command{
|
|
Use: "init",
|
|
Short: "Initialize Template",
|
|
Long: `Initialize template`,
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return template.Materialize(args[0], targetDir, configFile)
|
|
},
|
|
}
|
|
|
|
var targetDir string
|
|
var configFile string
|
|
|
|
func init() {
|
|
initCmd.Flags().StringVar(&targetDir, "target-dir", ".", "path to directory template will be initialized in")
|
|
initCmd.Flags().StringVar(&configFile, "config-file", "", "path to config to use for template initialization")
|
|
initCmd.MarkFlagRequired("config-file")
|
|
AddCommand(initCmd)
|
|
}
|