You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd.Flags().StringVar(&args.TemplateGitHubPath, "template-github-path", "", fmt.Sprintf("Path within the repository containing template subdirectories (default: %s)", defaultTemplateGitHubPath))
66
67
67
68
// Common flags
68
-
cmd.Flags().StringVar(&args.DestinationDir, "destination-dir", ".", "Target directory where scaffolded files will be created")
69
+
cmd.Flags().StringVar(&args.DestinationDir, "destination-dir", "", "Target directory where scaffolded files will be created. If not specified, uses current working directory")
69
70
cmd.Flags().StringVar(&args.Name, "name", "", "Name of the stackpack (required)")
70
71
cmd.Flags().StringVar(&args.TemplateName, "template-name", defaultTemplateName, fmt.Sprintf("Name of the template subdirectory to use (default: %s)", defaultTemplateName))
71
72
cmd.Flags().BoolVar(&args.Force, "force", false, "Overwrite existing files without prompting")
0 commit comments