Skip to content

Commit 043e0c2

Browse files
authored
rename renderinc to render-oss (#175)
1 parent 14b5bb2 commit 043e0c2

112 files changed

Lines changed: 405 additions & 404 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ builds:
1010
flags:
1111
- -trimpath
1212
ldflags:
13-
- "-s -w -X 'github.com/renderinc/cli/pkg/cfg.Version={{ .Version }}'"
13+
- "-s -w -X 'github.com/render-oss/cli/pkg/cfg.Version={{ .Version }}'"
1414
goos:
1515
- freebsd
1616
- windows

cmd/deploycancel.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
tea "github.com/charmbracelet/bubbletea"
77
"github.com/spf13/cobra"
88

9-
"github.com/renderinc/cli/pkg/command"
10-
"github.com/renderinc/cli/pkg/text"
11-
"github.com/renderinc/cli/pkg/tui/views"
9+
"github.com/render-oss/cli/pkg/command"
10+
"github.com/render-oss/cli/pkg/text"
11+
"github.com/render-oss/cli/pkg/tui/views"
1212
)
1313

1414
var deployCancelCmd = &cobra.Command{

cmd/deploycreate.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ import (
88
tea "github.com/charmbracelet/bubbletea"
99
"github.com/spf13/cobra"
1010

11-
"github.com/renderinc/cli/pkg/client"
12-
"github.com/renderinc/cli/pkg/command"
13-
"github.com/renderinc/cli/pkg/deploy"
14-
"github.com/renderinc/cli/pkg/resource"
15-
"github.com/renderinc/cli/pkg/text"
16-
"github.com/renderinc/cli/pkg/tui/views"
17-
"github.com/renderinc/cli/pkg/types"
11+
"github.com/render-oss/cli/pkg/client"
12+
"github.com/render-oss/cli/pkg/command"
13+
"github.com/render-oss/cli/pkg/deploy"
14+
"github.com/render-oss/cli/pkg/resource"
15+
"github.com/render-oss/cli/pkg/text"
16+
"github.com/render-oss/cli/pkg/tui/views"
17+
"github.com/render-oss/cli/pkg/types"
1818
)
1919

2020
var deployCmd = &cobra.Command{

cmd/deploylist.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ import (
77
tea "github.com/charmbracelet/bubbletea"
88
"github.com/spf13/cobra"
99

10-
"github.com/renderinc/cli/pkg/client"
11-
"github.com/renderinc/cli/pkg/command"
12-
"github.com/renderinc/cli/pkg/dashboard"
13-
"github.com/renderinc/cli/pkg/deploy"
14-
"github.com/renderinc/cli/pkg/resource"
15-
"github.com/renderinc/cli/pkg/text"
16-
"github.com/renderinc/cli/pkg/tui/views"
10+
"github.com/render-oss/cli/pkg/client"
11+
"github.com/render-oss/cli/pkg/command"
12+
"github.com/render-oss/cli/pkg/dashboard"
13+
"github.com/render-oss/cli/pkg/deploy"
14+
"github.com/render-oss/cli/pkg/resource"
15+
"github.com/render-oss/cli/pkg/text"
16+
"github.com/render-oss/cli/pkg/tui/views"
1717
)
1818

1919
var deployListCmd = &cobra.Command{

cmd/environment.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ import (
66
tea "github.com/charmbracelet/bubbletea"
77
"github.com/spf13/cobra"
88

9-
"github.com/renderinc/cli/pkg/client"
10-
"github.com/renderinc/cli/pkg/command"
11-
"github.com/renderinc/cli/pkg/project"
12-
"github.com/renderinc/cli/pkg/text"
13-
"github.com/renderinc/cli/pkg/tui"
14-
"github.com/renderinc/cli/pkg/tui/views"
9+
"github.com/render-oss/cli/pkg/client"
10+
"github.com/render-oss/cli/pkg/command"
11+
"github.com/render-oss/cli/pkg/project"
12+
"github.com/render-oss/cli/pkg/text"
13+
"github.com/render-oss/cli/pkg/tui"
14+
"github.com/render-oss/cli/pkg/tui/views"
1515
)
1616

1717
var environmentCmd = &cobra.Command{

cmd/jobcancel.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
tea "github.com/charmbracelet/bubbletea"
77
"github.com/spf13/cobra"
88

9-
"github.com/renderinc/cli/pkg/command"
10-
"github.com/renderinc/cli/pkg/text"
11-
"github.com/renderinc/cli/pkg/tui/views"
9+
"github.com/render-oss/cli/pkg/command"
10+
"github.com/render-oss/cli/pkg/text"
11+
"github.com/render-oss/cli/pkg/tui/views"
1212
)
1313

1414
var jobCancelCmd = &cobra.Command{

cmd/jobcreate.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import (
77
tea "github.com/charmbracelet/bubbletea"
88
"github.com/spf13/cobra"
99

10-
"github.com/renderinc/cli/pkg/client"
11-
clientjob "github.com/renderinc/cli/pkg/client/jobs"
12-
"github.com/renderinc/cli/pkg/command"
13-
"github.com/renderinc/cli/pkg/resource"
14-
"github.com/renderinc/cli/pkg/text"
15-
"github.com/renderinc/cli/pkg/tui/views"
10+
"github.com/render-oss/cli/pkg/client"
11+
clientjob "github.com/render-oss/cli/pkg/client/jobs"
12+
"github.com/render-oss/cli/pkg/command"
13+
"github.com/render-oss/cli/pkg/resource"
14+
"github.com/render-oss/cli/pkg/text"
15+
"github.com/render-oss/cli/pkg/tui/views"
1616
)
1717

1818
var JobCreateCmd = &cobra.Command{

cmd/joblist.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ import (
77
tea "github.com/charmbracelet/bubbletea"
88
"github.com/spf13/cobra"
99

10-
"github.com/renderinc/cli/pkg/client"
11-
clientjob "github.com/renderinc/cli/pkg/client/jobs"
12-
"github.com/renderinc/cli/pkg/command"
13-
"github.com/renderinc/cli/pkg/job"
14-
"github.com/renderinc/cli/pkg/resource"
15-
"github.com/renderinc/cli/pkg/text"
16-
"github.com/renderinc/cli/pkg/tui/views"
10+
"github.com/render-oss/cli/pkg/client"
11+
clientjob "github.com/render-oss/cli/pkg/client/jobs"
12+
"github.com/render-oss/cli/pkg/command"
13+
"github.com/render-oss/cli/pkg/job"
14+
"github.com/render-oss/cli/pkg/resource"
15+
"github.com/render-oss/cli/pkg/text"
16+
"github.com/render-oss/cli/pkg/tui/views"
1717
)
1818

1919
var jobListCmd = &cobra.Command{

cmd/login.go

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

6-
"github.com/renderinc/cli/pkg/tui/views"
6+
"github.com/render-oss/cli/pkg/tui/views"
77
)
88

99
var loginCmd = &cobra.Command{

cmd/logs.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ import (
1111
"github.com/spf13/cobra"
1212
"gopkg.in/yaml.v3"
1313

14-
"github.com/renderinc/cli/pkg/client"
15-
lclient "github.com/renderinc/cli/pkg/client/logs"
16-
"github.com/renderinc/cli/pkg/command"
17-
"github.com/renderinc/cli/pkg/pointers"
18-
"github.com/renderinc/cli/pkg/resource"
19-
"github.com/renderinc/cli/pkg/tui"
20-
"github.com/renderinc/cli/pkg/tui/views"
14+
"github.com/render-oss/cli/pkg/client"
15+
lclient "github.com/render-oss/cli/pkg/client/logs"
16+
"github.com/render-oss/cli/pkg/command"
17+
"github.com/render-oss/cli/pkg/pointers"
18+
"github.com/render-oss/cli/pkg/resource"
19+
"github.com/render-oss/cli/pkg/tui"
20+
"github.com/render-oss/cli/pkg/tui/views"
2121
)
2222

2323
var LogsCmd = &cobra.Command{

0 commit comments

Comments
 (0)