| 123456789101112131415161718192021222324 |
- package v2
- import (
- "context"
- "fmt"
- )
- // UpdateFull implements the functionality of the `porter build` command for validate apply v2 projects
- func UpdateFull(ctx context.Context) error {
- fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
- return nil
- }
- // UpdateBuild implements the functionality of the `porter apply` command for validate apply v2 projects
- func UpdateBuild(ctx context.Context) error {
- fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
- return nil
- }
- // UpdateUpgrade implements the functionality of the `porter config` command for validate apply v2 projects
- func UpdateUpgrade(ctx context.Context) error {
- fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
- return nil
- }
|