Skip to content

Commit f389b5e

Browse files
committed
fix: Correct the new module path
1 parent 0a7b464 commit f389b5e

File tree

34 files changed

+89
-89
lines changed

34 files changed

+89
-89
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ build: generate
1111

1212
.PHONY: generate
1313
generate:
14-
@go run github.com/golang/mock/mockgen github.com/nitrictech/newcli/pkg/containerengine ContainerEngine > mocks/mock_containerengine/mock_containerengine.go
15-
@go run github.com/golang/mock/mockgen github.com/nitrictech/newcli/pkg/utils GetterClient > mocks/mock_utils/mock_getter.go
14+
@go run github.com/golang/mock/mockgen github.com/nitrictech/cli/pkg/containerengine ContainerEngine > mocks/mock_containerengine/mock_containerengine.go
15+
@go run github.com/golang/mock/mockgen github.com/nitrictech/cli/pkg/utils GetterClient > mocks/mock_utils/mock_getter.go
1616
@go run ./hack/modversion/main.go > pkg/stack/membraneversion.txt
1717

1818
.PHONY: fmt

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/nitrictech/newcli
1+
module github.com/nitrictech/cli
22

33
go 1.16
44

mocks/mock_containerengine/mock_containerengine.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mocks/mock_utils/mock_getter.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/build/build.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ import (
2323
"path"
2424
"strings"
2525

26-
"github.com/nitrictech/newcli/pkg/containerengine"
27-
"github.com/nitrictech/newcli/pkg/runtime"
28-
"github.com/nitrictech/newcli/pkg/stack"
29-
"github.com/nitrictech/newcli/pkg/target"
26+
"github.com/nitrictech/cli/pkg/containerengine"
27+
"github.com/nitrictech/cli/pkg/runtime"
28+
"github.com/nitrictech/cli/pkg/stack"
29+
"github.com/nitrictech/cli/pkg/target"
3030
)
3131

3232
func Create(s *stack.Stack, t *target.Target) error {

pkg/build/build_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ import (
2323

2424
"github.com/golang/mock/gomock"
2525

26-
"github.com/nitrictech/newcli/mocks/mock_containerengine"
27-
"github.com/nitrictech/newcli/pkg/containerengine"
28-
"github.com/nitrictech/newcli/pkg/stack"
29-
"github.com/nitrictech/newcli/pkg/target"
26+
"github.com/nitrictech/cli/mocks/mock_containerengine"
27+
"github.com/nitrictech/cli/pkg/containerengine"
28+
"github.com/nitrictech/cli/pkg/stack"
29+
"github.com/nitrictech/cli/pkg/target"
3030
)
3131

3232
func TestCreateBaseDev(t *testing.T) {

pkg/cmd/deployment/root.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ package deployment
1919
import (
2020
"github.com/spf13/cobra"
2121

22-
"github.com/nitrictech/newcli/pkg/build"
23-
"github.com/nitrictech/newcli/pkg/codeconfig"
24-
"github.com/nitrictech/newcli/pkg/output"
25-
"github.com/nitrictech/newcli/pkg/provider"
26-
"github.com/nitrictech/newcli/pkg/stack"
27-
"github.com/nitrictech/newcli/pkg/target"
28-
"github.com/nitrictech/newcli/pkg/tasklet"
22+
"github.com/nitrictech/cli/pkg/build"
23+
"github.com/nitrictech/cli/pkg/codeconfig"
24+
"github.com/nitrictech/cli/pkg/output"
25+
"github.com/nitrictech/cli/pkg/provider"
26+
"github.com/nitrictech/cli/pkg/stack"
27+
"github.com/nitrictech/cli/pkg/target"
28+
"github.com/nitrictech/cli/pkg/tasklet"
2929
)
3030

3131
var deploymentName string

pkg/cmd/root.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ import (
2626
"github.com/spf13/cobra"
2727
"github.com/spf13/viper"
2828

29-
"github.com/nitrictech/newcli/pkg/cmd/deployment"
30-
"github.com/nitrictech/newcli/pkg/cmd/provider"
31-
"github.com/nitrictech/newcli/pkg/cmd/run"
32-
"github.com/nitrictech/newcli/pkg/cmd/stack"
33-
cmdTarget "github.com/nitrictech/newcli/pkg/cmd/target"
34-
"github.com/nitrictech/newcli/pkg/output"
35-
"github.com/nitrictech/newcli/pkg/tasklet"
36-
"github.com/nitrictech/newcli/pkg/utils"
29+
"github.com/nitrictech/cli/pkg/cmd/deployment"
30+
"github.com/nitrictech/cli/pkg/cmd/provider"
31+
"github.com/nitrictech/cli/pkg/cmd/run"
32+
"github.com/nitrictech/cli/pkg/cmd/stack"
33+
cmdTarget "github.com/nitrictech/cli/pkg/cmd/target"
34+
"github.com/nitrictech/cli/pkg/output"
35+
"github.com/nitrictech/cli/pkg/tasklet"
36+
"github.com/nitrictech/cli/pkg/utils"
3737
)
3838

3939
const configFileName = ".nitric-config"

pkg/cmd/run/root.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ import (
2626
"github.com/pkg/errors"
2727
"github.com/spf13/cobra"
2828

29-
"github.com/nitrictech/newcli/pkg/build"
30-
"github.com/nitrictech/newcli/pkg/containerengine"
31-
"github.com/nitrictech/newcli/pkg/output"
32-
"github.com/nitrictech/newcli/pkg/run"
33-
"github.com/nitrictech/newcli/pkg/stack"
34-
"github.com/nitrictech/newcli/pkg/tasklet"
29+
"github.com/nitrictech/cli/pkg/build"
30+
"github.com/nitrictech/cli/pkg/containerengine"
31+
"github.com/nitrictech/cli/pkg/output"
32+
"github.com/nitrictech/cli/pkg/run"
33+
"github.com/nitrictech/cli/pkg/stack"
34+
"github.com/nitrictech/cli/pkg/tasklet"
3535
)
3636

3737
var runCmd = &cobra.Command{

pkg/cmd/stack/root.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ import (
2626
"github.com/AlecAivazis/survey/v2"
2727
"github.com/spf13/cobra"
2828

29-
"github.com/nitrictech/newcli/pkg/codeconfig"
30-
"github.com/nitrictech/newcli/pkg/output"
31-
"github.com/nitrictech/newcli/pkg/stack"
32-
"github.com/nitrictech/newcli/pkg/templates"
29+
"github.com/nitrictech/cli/pkg/codeconfig"
30+
"github.com/nitrictech/cli/pkg/output"
31+
"github.com/nitrictech/cli/pkg/stack"
32+
"github.com/nitrictech/cli/pkg/templates"
3333
)
3434

3535
var (

pkg/cmd/target/root.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121
"github.com/spf13/cobra"
2222
"github.com/spf13/viper"
2323

24-
"github.com/nitrictech/newcli/pkg/output"
25-
"github.com/nitrictech/newcli/pkg/target"
24+
"github.com/nitrictech/cli/pkg/output"
25+
"github.com/nitrictech/cli/pkg/target"
2626
)
2727

2828
var targetCmd = &cobra.Command{

pkg/codeconfig/codeconfig.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ import (
3232
"github.com/pkg/errors"
3333
"google.golang.org/grpc"
3434

35-
"github.com/nitrictech/newcli/pkg/build"
36-
"github.com/nitrictech/newcli/pkg/containerengine"
37-
"github.com/nitrictech/newcli/pkg/cron"
38-
"github.com/nitrictech/newcli/pkg/output"
39-
"github.com/nitrictech/newcli/pkg/runtime"
40-
"github.com/nitrictech/newcli/pkg/stack"
41-
"github.com/nitrictech/newcli/pkg/utils"
35+
"github.com/nitrictech/cli/pkg/build"
36+
"github.com/nitrictech/cli/pkg/containerengine"
37+
"github.com/nitrictech/cli/pkg/cron"
38+
"github.com/nitrictech/cli/pkg/output"
39+
"github.com/nitrictech/cli/pkg/runtime"
40+
"github.com/nitrictech/cli/pkg/stack"
41+
"github.com/nitrictech/cli/pkg/utils"
4242
v1 "github.com/nitrictech/nitric/pkg/api/nitric/v1"
4343
)
4444

pkg/codeconfig/function.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"strings"
2222
"sync"
2323

24-
"github.com/nitrictech/newcli/pkg/utils"
24+
"github.com/nitrictech/cli/pkg/utils"
2525

2626
pb "github.com/nitrictech/nitric/pkg/api/nitric/v1"
2727
)

pkg/containerengine/docker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import (
3737
"github.com/docker/docker/pkg/idtools"
3838
"github.com/pkg/errors"
3939

40-
"github.com/nitrictech/newcli/pkg/utils"
40+
"github.com/nitrictech/cli/pkg/utils"
4141
)
4242

4343
type docker struct {

pkg/containerengine/podman.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
"github.com/docker/docker/client"
3232
"github.com/pkg/errors"
3333

34-
"github.com/nitrictech/newcli/pkg/utils"
34+
"github.com/nitrictech/cli/pkg/utils"
3535
)
3636

3737
// use docker client to podman socket.

pkg/containerengine/syslog_other.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
"github.com/hashicorp/consul/sdk/freeport"
3232
"gopkg.in/mcuadros/go-syslog.v2"
3333

34-
"github.com/nitrictech/newcli/pkg/utils"
34+
"github.com/nitrictech/cli/pkg/utils"
3535
)
3636

3737
type localSyslog struct {

pkg/output/format.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
"github.com/jedib0t/go-pretty/table"
3030
"gopkg.in/yaml.v2"
3131

32-
"github.com/nitrictech/newcli/pkg/pflagext"
32+
"github.com/nitrictech/cli/pkg/pflagext"
3333
)
3434

3535
var (

pkg/output/format_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import (
2424

2525
"github.com/google/go-cmp/cmp"
2626

27-
"github.com/nitrictech/newcli/pkg/containerengine"
28-
"github.com/nitrictech/newcli/pkg/target"
27+
"github.com/nitrictech/cli/pkg/containerengine"
28+
"github.com/nitrictech/cli/pkg/target"
2929
)
3030

3131
func Test_printStruct(t *testing.T) {

pkg/provider/generator.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ package provider
1919
import (
2020
"fmt"
2121

22-
"github.com/nitrictech/newcli/pkg/provider/pulumi"
23-
"github.com/nitrictech/newcli/pkg/provider/types"
24-
"github.com/nitrictech/newcli/pkg/stack"
25-
"github.com/nitrictech/newcli/pkg/target"
26-
"github.com/nitrictech/newcli/pkg/utils"
22+
"github.com/nitrictech/cli/pkg/provider/pulumi"
23+
"github.com/nitrictech/cli/pkg/provider/types"
24+
"github.com/nitrictech/cli/pkg/stack"
25+
"github.com/nitrictech/cli/pkg/target"
26+
"github.com/nitrictech/cli/pkg/utils"
2727
)
2828

2929
func NewProvider(s *stack.Stack, t *target.Target) (types.Provider, error) {

pkg/provider/pulumi/aws/aws.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ import (
3535
"github.com/pulumi/pulumi/sdk/v3/go/auto"
3636
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
3737

38-
"github.com/nitrictech/newcli/pkg/provider/pulumi/types"
39-
"github.com/nitrictech/newcli/pkg/stack"
40-
"github.com/nitrictech/newcli/pkg/target"
38+
"github.com/nitrictech/cli/pkg/provider/pulumi/types"
39+
"github.com/nitrictech/cli/pkg/stack"
40+
"github.com/nitrictech/cli/pkg/target"
4141
v1 "github.com/nitrictech/nitric/pkg/api/nitric/v1"
4242
)
4343

pkg/provider/pulumi/aws/lambda.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/pulumi/pulumi-docker/sdk/v3/go/docker"
2727
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
2828

29-
"github.com/nitrictech/newcli/pkg/stack"
29+
"github.com/nitrictech/cli/pkg/stack"
3030
)
3131

3232
type LambdaArgs struct {

pkg/provider/pulumi/aws/schedule.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"github.com/pulumi/pulumi-aws/sdk/v4/go/aws/sns"
2525
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
2626

27-
"github.com/nitrictech/newcli/pkg/cron"
27+
"github.com/nitrictech/cli/pkg/cron"
2828
)
2929

3030
func (a *awsProvider) schedule(ctx *pulumi.Context, name, expression string, topic *sns.Topic) error {

pkg/provider/pulumi/generator.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ import (
2626
"github.com/pulumi/pulumi/sdk/v3/go/common/tokens"
2727
"github.com/pulumi/pulumi/sdk/v3/go/common/workspace"
2828

29-
"github.com/nitrictech/newcli/pkg/provider/pulumi/aws"
30-
pulumitypes "github.com/nitrictech/newcli/pkg/provider/pulumi/types"
31-
"github.com/nitrictech/newcli/pkg/provider/types"
32-
"github.com/nitrictech/newcli/pkg/stack"
33-
"github.com/nitrictech/newcli/pkg/target"
34-
"github.com/nitrictech/newcli/pkg/utils"
29+
"github.com/nitrictech/cli/pkg/provider/pulumi/aws"
30+
pulumitypes "github.com/nitrictech/cli/pkg/provider/pulumi/types"
31+
"github.com/nitrictech/cli/pkg/provider/types"
32+
"github.com/nitrictech/cli/pkg/stack"
33+
"github.com/nitrictech/cli/pkg/target"
34+
"github.com/nitrictech/cli/pkg/utils"
3535
)
3636

3737
type pulumiDeployment struct {

pkg/run/function.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ import (
2323

2424
"github.com/docker/docker/api/types/container"
2525

26-
"github.com/nitrictech/newcli/pkg/containerengine"
27-
"github.com/nitrictech/newcli/pkg/output"
28-
"github.com/nitrictech/newcli/pkg/runtime"
29-
"github.com/nitrictech/newcli/pkg/stack"
26+
"github.com/nitrictech/cli/pkg/containerengine"
27+
"github.com/nitrictech/cli/pkg/output"
28+
"github.com/nitrictech/cli/pkg/runtime"
29+
"github.com/nitrictech/cli/pkg/stack"
3030
)
3131

3232
type Function struct {

pkg/run/minio.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ import (
2929
"github.com/hashicorp/consul/sdk/freeport"
3030
"github.com/pkg/errors"
3131

32-
"github.com/nitrictech/newcli/pkg/containerengine"
33-
"github.com/nitrictech/newcli/pkg/output"
32+
"github.com/nitrictech/cli/pkg/containerengine"
33+
"github.com/nitrictech/cli/pkg/output"
3434
)
3535

3636
type MinioServer struct {

pkg/run/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"path"
2424
"time"
2525

26-
"github.com/nitrictech/newcli/pkg/utils"
26+
"github.com/nitrictech/cli/pkg/utils"
2727
"github.com/nitrictech/nitric/pkg/membrane"
2828
boltdb_service "github.com/nitrictech/nitric/pkg/plugins/document/boltdb"
2929
queue_service "github.com/nitrictech/nitric/pkg/plugins/queue/dev"

pkg/runtime/golang.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"github.com/docker/docker/api/types/strslice"
2929

3030
"github.com/nitrictech/boxygen/pkg/backend/dockerfile"
31-
"github.com/nitrictech/newcli/pkg/utils"
31+
"github.com/nitrictech/cli/pkg/utils"
3232
)
3333

3434
type golang struct {

pkg/runtime/java.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"strings"
2525

2626
"github.com/nitrictech/boxygen/pkg/backend/dockerfile"
27-
"github.com/nitrictech/newcli/pkg/utils"
27+
"github.com/nitrictech/cli/pkg/utils"
2828
)
2929

3030
const (

pkg/runtime/javascript.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/docker/docker/api/types/strslice"
2727

2828
"github.com/nitrictech/boxygen/pkg/backend/dockerfile"
29-
"github.com/nitrictech/newcli/pkg/utils"
29+
"github.com/nitrictech/cli/pkg/utils"
3030
)
3131

3232
type javascript struct {

pkg/runtime/python.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"strings"
2424

2525
"github.com/nitrictech/boxygen/pkg/backend/dockerfile"
26-
"github.com/nitrictech/newcli/pkg/utils"
26+
"github.com/nitrictech/cli/pkg/utils"
2727
)
2828

2929
type python struct {

pkg/stack/options.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ import (
2424
"github.com/pkg/errors"
2525
"github.com/spf13/cobra"
2626

27-
"github.com/nitrictech/newcli/pkg/pflagext"
28-
"github.com/nitrictech/newcli/pkg/runtime"
29-
"github.com/nitrictech/newcli/pkg/utils"
27+
"github.com/nitrictech/cli/pkg/pflagext"
28+
"github.com/nitrictech/cli/pkg/runtime"
29+
"github.com/nitrictech/cli/pkg/utils"
3030
)
3131

3232
var (

pkg/target/options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"github.com/spf13/cobra"
2222
"github.com/spf13/viper"
2323

24-
"github.com/nitrictech/newcli/pkg/pflagext"
24+
"github.com/nitrictech/cli/pkg/pflagext"
2525
)
2626

2727
const (

0 commit comments

Comments
 (0)