Skip to content

Commit b85db8a

Browse files
committed
Fix module path to match GitHub repo URL
1 parent 092f9c7 commit b85db8a

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
### From Source
2323

2424
```bash
25-
go install github.com/bharath/git-scope/cmd/git-scope@latest
25+
go install github.com/Bharath-code/git-scope/cmd/git-scope@latest
2626
```
2727

2828
Or clone and build:
2929

3030
```bash
31-
git clone https://github.com/bharath/git-scope.git
31+
git clone https://github.com/Bharath-code/git-scope.git
3232
cd git-scope
3333
go build -o git-scope ./cmd/git-scope
3434
```

cmd/git-scope/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"log"
77
"os"
88

9-
"github.com/bharath/git-scope/internal/config"
10-
"github.com/bharath/git-scope/internal/scan"
11-
"github.com/bharath/git-scope/internal/tui"
9+
"github.com/Bharath-code/git-scope/internal/config"
10+
"github.com/Bharath-code/git-scope/internal/scan"
11+
"github.com/Bharath-code/git-scope/internal/tui"
1212
)
1313

1414
const version = "0.1.0"

internal/cache/cache.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package cache
22

3-
import "github.com/bharath/git-scope/internal/model"
3+
import "github.com/Bharath-code/git-scope/internal/model"
44

55
// Store defines the interface for caching repo data
66
type Store interface {

internal/gitstatus/gitstatus.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"time"
99

10-
"github.com/bharath/git-scope/internal/model"
10+
"github.com/Bharath-code/git-scope/internal/model"
1111
)
1212

1313
// Status retrieves the git status for a repository at the given path

internal/scan/scan.go

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

12-
"github.com/bharath/git-scope/internal/gitstatus"
13-
"github.com/bharath/git-scope/internal/model"
12+
"github.com/Bharath-code/git-scope/internal/gitstatus"
13+
"github.com/Bharath-code/git-scope/internal/model"
1414
)
1515

1616
// ScanRoots recursively scans the given root directories for git repositories

internal/tui/app.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ package tui
22

33
import (
44
tea "github.com/charmbracelet/bubbletea"
5-
"github.com/bharath/git-scope/internal/config"
6-
"github.com/bharath/git-scope/internal/model"
7-
"github.com/bharath/git-scope/internal/scan"
5+
"github.com/Bharath-code/git-scope/internal/config"
6+
"github.com/Bharath-code/git-scope/internal/model"
7+
"github.com/Bharath-code/git-scope/internal/scan"
88
)
99

1010
// Run starts the Bubbletea TUI application

internal/tui/model.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"github.com/charmbracelet/bubbles/table"
88
tea "github.com/charmbracelet/bubbletea"
99
"github.com/charmbracelet/lipgloss"
10-
"github.com/bharath/git-scope/internal/config"
11-
"github.com/bharath/git-scope/internal/model"
10+
"github.com/Bharath-code/git-scope/internal/config"
11+
"github.com/Bharath-code/git-scope/internal/model"
1212
)
1313

1414
// State represents the current UI state

0 commit comments

Comments
 (0)