## Description
<!-- **Please link some issue here describing what you are trying to achieve.**
In case there is no issue present for your PR, please consider creating one.
At least please give us some description what you are trying to achieve and why your change is needed. -->
relates to #1234
## Checklist
- [ ] Issue was linked above
- [ ] Code format was applied: `make fmt`
- [ ] Examples were added / adjusted (see `examples/` directory)
- [x] Docs are up-to-date: `make generate-docs` (will be checked by CI)
- [ ] Unit tests got implemented or updated
- [ ] Acceptance tests got implemented or updated (see e.g. [here](f5f99d1709/stackit/internal/services/dns/dns_acc_test.go))
- [x] Unit tests are passing: `make test` (will be checked by CI)
- [x] No linter issues: `make lint` (will be checked by CI)
Co-authored-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
Co-authored-by: marcel.henselin <marcel.henselin@stackit.cloud>
Reviewed-on: #81
43 lines
1.2 KiB
Go
43 lines
1.2 KiB
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"tf-provider.git.onstackit.cloud/stackit-dev-tools/terraform-provider-stackitprivatepreview/generator/cmd/build"
|
|
)
|
|
|
|
var (
|
|
skipCleanup bool
|
|
skipClone bool
|
|
packagesOnly bool
|
|
verbose bool
|
|
debug bool
|
|
)
|
|
|
|
var buildCmd = &cobra.Command{
|
|
Use: "build",
|
|
Short: "Build the necessary boilerplate",
|
|
Long: `...`,
|
|
RunE: func(_ *cobra.Command, _ []string) error {
|
|
b := build.Builder{
|
|
SkipClone: skipClone,
|
|
SkipCleanup: skipCleanup,
|
|
PackagesOnly: packagesOnly,
|
|
Verbose: verbose,
|
|
Debug: debug,
|
|
}
|
|
return b.Build()
|
|
},
|
|
}
|
|
|
|
func NewBuildCmd() *cobra.Command {
|
|
return buildCmd
|
|
}
|
|
|
|
func init() { //nolint:gochecknoinits // This is the standard way to set up Cobra commands
|
|
buildCmd.Flags().BoolVarP(&skipCleanup, "skip-clean", "c", false, "Skip cleanup steps")
|
|
buildCmd.Flags().BoolVarP(&debug, "debug", "d", false, "Enable debug output")
|
|
buildCmd.Flags().BoolVarP(&skipClone, "skip-clone", "g", false, "Skip cloning from git")
|
|
buildCmd.Flags().BoolVarP(&packagesOnly, "packages-only", "p", false, "Only generate packages")
|
|
buildCmd.Flags().BoolVarP(&verbose, "verbose", "v", false, "verbose - show more logs")
|
|
}
|