Skip to content
This repository was archived by the owner on Sep 18, 2021. It is now read-only.

Commit fe267d9

Browse files
committed
chore: update package name
1 parent de62c96 commit fe267d9

File tree

15 files changed

+24
-24
lines changed

15 files changed

+24
-24
lines changed

ansible/inventory.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/spf13/viper"
1010
"gopkg.in/yaml.v2"
1111

12-
"github.com/getstackhead/stackhead/cli/stackhead"
12+
"github.com/getstackhead/stackhead-cli/stackhead"
1313
)
1414

1515
type Inventory struct {

commands/cli/validate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cli
33
import (
44
"github.com/spf13/cobra"
55

6-
"github.com/getstackhead/stackhead/cli/routines"
6+
"github.com/getstackhead/stackhead-cli/routines"
77
)
88

99
// Validate is a command object for Cobra that provides the validate command

commands/init.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package commands
33
import (
44
"github.com/spf13/cobra"
55

6-
commandsinit "github.com/getstackhead/stackhead/cli/commands/init"
7-
"github.com/getstackhead/stackhead/cli/routines"
6+
commandsinit "github.com/getstackhead/stackhead-cli/commands/init"
7+
"github.com/getstackhead/stackhead-cli/routines"
88
)
99

1010
// Init is a command object for Cobra that provides the init command

commands/init/install_collection.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"fmt"
55
"sync"
66

7-
"github.com/getstackhead/stackhead/cli/ansible"
8-
"github.com/getstackhead/stackhead/cli/routines"
7+
"github.com/getstackhead/stackhead-cli/ansible"
8+
"github.com/getstackhead/stackhead-cli/routines"
99
)
1010

1111
func installCollection(version string) error {

commands/init/install_modules.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"strings"
66
"sync"
77

8-
"github.com/getstackhead/stackhead/cli/routines"
9-
"github.com/getstackhead/stackhead/cli/stackhead"
8+
"github.com/getstackhead/stackhead-cli/routines"
9+
"github.com/getstackhead/stackhead-cli/stackhead"
1010
)
1111

1212
func collectModules() []string {

commands/module/validate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package module
33
import (
44
"github.com/spf13/cobra"
55

6-
"github.com/getstackhead/stackhead/cli/routines"
6+
"github.com/getstackhead/stackhead-cli/routines"
77
)
88

99
// Validate is a command object for Cobra that provides the validate command

commands/project/deploy.go

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

88
"github.com/spf13/cobra"
99

10-
"github.com/getstackhead/stackhead/cli/ansible"
11-
"github.com/getstackhead/stackhead/cli/routines"
10+
"github.com/getstackhead/stackhead-cli/ansible"
11+
"github.com/getstackhead/stackhead-cli/routines"
1212
)
1313

1414
// DeployApplication is a command object for Cobra that provides the deploy command

commands/project/destroy.go

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

1010
"github.com/spf13/cobra"
1111

12-
"github.com/getstackhead/stackhead/cli/ansible"
13-
"github.com/getstackhead/stackhead/cli/routines"
12+
"github.com/getstackhead/stackhead-cli/ansible"
13+
"github.com/getstackhead/stackhead-cli/routines"
1414
)
1515

1616
// DestroyApplication is a command object for Cobra that provides the destroy command

commands/project/validate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package project
33
import (
44
"github.com/spf13/cobra"
55

6-
"github.com/getstackhead/stackhead/cli/routines"
6+
"github.com/getstackhead/stackhead-cli/routines"
77
)
88

99
// Validate is a command object for Cobra that provides the validate command

commands/setup.go

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

88
"github.com/spf13/cobra"
99

10-
"github.com/getstackhead/stackhead/cli/ansible"
11-
"github.com/getstackhead/stackhead/cli/routines"
10+
"github.com/getstackhead/stackhead-cli/ansible"
11+
"github.com/getstackhead/stackhead-cli/routines"
1212
)
1313

1414
// SetupServer is a command object for Cobra that provides the setup command

0 commit comments

Comments
 (0)