Skip to content

Commit 51fc8c1

Browse files
committed
Rename module to github.com/luthermonson/linode-tui
This repo lives under the personal account, not the linode org: update the module path and all imports, point goreleaser releases and the homebrew tap at luthermonson/*, and fix the brew install line.
1 parent 831bd54 commit 51fc8c1

57 files changed

Lines changed: 101 additions & 101 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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,17 @@ changelog:
7070

7171
release:
7272
github:
73-
owner: linode
74-
name: tui
73+
owner: luthermonson
74+
name: linode-tui
7575
draft: true
7676
prerelease: auto
7777

7878
brews:
7979
- repository:
80-
owner: linode
80+
owner: luthermonson
8181
name: homebrew-tap
82-
homepage: https://github.com/linode/tui
83-
description: A k9s-style TUI for the Linode API
82+
homepage: https://github.com/luthermonson/linode-tui
83+
description: A k9s-inspired TUI for the Linode API
8484
license: MIT
8585
install: |
8686
bin.install "linode-tui"

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Thanks for your interest! This project is a Bubble Tea-based TUI for the Linode
55
## Quick start
66

77
```bash
8-
git clone https://github.com/linode/tui && cd tui
8+
git clone https://github.com/luthermonson/linode-tui && cd tui
99
go test ./...
1010
go vet ./...
1111
go build ./cmd/linode-tui

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ See **[docs/USAGE.md](docs/USAGE.md)** for the full reference — every command-
4040
## Install
4141

4242
```bash
43-
go install github.com/linode/tui/cmd/linode-tui@latest
43+
go install github.com/luthermonson/linode-tui/cmd/linode-tui@latest
4444
```
4545

4646
Or build from source:
4747

4848
```bash
49-
git clone https://github.com/linode/tui && cd tui
49+
git clone https://github.com/luthermonson/linode-tui && cd tui
5050
go build -o linode-tui ./cmd/linode-tui
5151
```
5252

@@ -248,7 +248,7 @@ linode-tui completion pwsh
248248

249249
## Releases
250250

251-
Cross-platform binaries (Linux / macOS / Windows × amd64/arm64) are produced by [GoReleaser](https://goreleaser.com/) on every tag — see `.goreleaser.yml`. Artifacts and `checksums.txt` are attached to each GitHub release; a `homebrew-tap` formula is updated for `brew install linode/tap/linode-tui`.
251+
Cross-platform binaries (Linux / macOS / Windows × amd64/arm64) are produced by [GoReleaser](https://goreleaser.com/) on every tag — see `.goreleaser.yml`. Artifacts and `checksums.txt` are attached to each GitHub release; a `homebrew-tap` formula is updated for `brew install luthermonson/tap/linode-tui`.
252252

253253
Cut a release locally with:
254254

cli/app.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"github.com/urfave/cli/v3"
1212
"gopkg.in/yaml.v3"
1313

14-
"github.com/linode/tui/config"
15-
"github.com/linode/tui/linode"
16-
"github.com/linode/tui/tui"
14+
"github.com/luthermonson/linode-tui/config"
15+
"github.com/luthermonson/linode-tui/linode"
16+
"github.com/luthermonson/linode-tui/tui"
1717
)
1818

1919
func NewApp(version, commit string) *cli.Command {

cli/doctor.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ import (
1717
"github.com/mattn/go-isatty"
1818
"github.com/urfave/cli/v3"
1919

20-
"github.com/linode/tui/config"
21-
"github.com/linode/tui/linode"
22-
"github.com/linode/tui/tui/views"
20+
"github.com/luthermonson/linode-tui/config"
21+
"github.com/luthermonson/linode-tui/linode"
22+
"github.com/luthermonson/linode-tui/tui/views"
2323
)
2424

2525
func doctorCommand() *cli.Command {

cli/import_cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/mattn/go-isatty"
1111
"gopkg.in/ini.v1"
1212

13-
"github.com/linode/tui/config"
13+
"github.com/luthermonson/linode-tui/config"
1414
)
1515

1616
// maybeImportLinodeCLI is the first-run fallback: when no token resolves but

cmd/linode-tui/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"os/signal"
88
"syscall"
99

10-
"github.com/linode/tui/buildinfo"
11-
"github.com/linode/tui/cli"
10+
"github.com/luthermonson/linode-tui/buildinfo"
11+
"github.com/luthermonson/linode-tui/cli"
1212
)
1313

1414
var (

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/linode/tui
1+
module github.com/luthermonson/linode-tui
22

33
go 1.26
44

health/health.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ import (
1313
"strings"
1414
"sync"
1515

16-
"github.com/linode/tui/audit"
17-
"github.com/linode/tui/cache"
18-
"github.com/linode/tui/config"
19-
"github.com/linode/tui/linode"
16+
"github.com/luthermonson/linode-tui/audit"
17+
"github.com/luthermonson/linode-tui/cache"
18+
"github.com/luthermonson/linode-tui/config"
19+
"github.com/luthermonson/linode-tui/linode"
2020
)
2121

2222
// Result is one health check outcome.

linode/clear_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
"github.com/linode/linodego/v2"
1414

15-
"github.com/linode/tui/linode"
15+
"github.com/luthermonson/linode-tui/linode"
1616
)
1717

1818
func TestClearGuard(t *testing.T) {

0 commit comments

Comments
 (0)