func shouldSkipStage()

in cmd/seeds/dataCloud/dataCloud.go [181:193]


func shouldSkipStage(cmd *cobra.Command, s *fabric.Stage) bool {
	if cmd.Parent().Name() == "destroy" && s.Type == "foundation" {
		fmt.Println("Skipping foundation stage:", s.Name)
		return true
	}

	if skipFast && s.Type == "foundation" {
		fmt.Println("Skipping foundation stage:", s.Name)
		return true
	}

	return false
}