This commit is contained in:
2022-10-31 20:16:26 +01:00
parent e67569e776
commit 59249886ad
16 changed files with 74 additions and 74 deletions

View File

@@ -4,8 +4,8 @@ import (
"errors"
"os"
"git.front.kjuulh.io/kjuulh/dagger-go/pkg/builder"
"git.front.kjuulh.io/kjuulh/dagger-go/pkg/pipelines"
"git.front.kjuulh.io/kjuulh/bust/pkg/builder"
"git.front.kjuulh.io/kjuulh/bust/pkg/pipelines"
"github.com/spf13/cobra"
)

View File

@@ -9,7 +9,7 @@ import (
func NewCustomGoBuild(command string, runf func(ctx context.Context) error) error {
cmd := &cobra.Command{
Use: fmt.Sprintf("dagger-go build %s", command),
Use: fmt.Sprintf("bust build %s", command),
RunE: func(cmd *cobra.Command, args []string) error {
return runf(cmd.Context())
},

View File

@@ -10,9 +10,9 @@ import (
"dagger.io/dagger"
"git.front.kjuulh.io/kjuulh/byg"
"git.front.kjuulh.io/kjuulh/dagger-go/pkg/tasks/container"
"git.front.kjuulh.io/kjuulh/dagger-go/pkg/tasks/golang"
golangbin "git.front.kjuulh.io/kjuulh/dagger-go/pkg/tasks/golang-bin"
"git.front.kjuulh.io/kjuulh/bust/pkg/tasks/container"
"git.front.kjuulh.io/kjuulh/bust/pkg/tasks/golang"
golangbin "git.front.kjuulh.io/kjuulh/bust/pkg/tasks/golang-bin"
)
type DockerImageOpt struct {

View File

@@ -4,7 +4,7 @@ import (
"context"
"git.front.kjuulh.io/kjuulh/byg"
"git.front.kjuulh.io/kjuulh/dagger-go/pkg/builder"
"git.front.kjuulh.io/kjuulh/bust/pkg/builder"
"golang.org/x/sync/errgroup"
)