Skip to content

Commit 4221288

Browse files
committed
fixing go.mod file...had a relative path instead of absolute
1 parent 2087bd1 commit 4221288

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ import (
3131
"os"
3232
"strings"
3333
"time"
34-
"tips/pkg"
3534

35+
"github.com/deckarep/tips/pkg"
3636
"github.com/spf13/viper"
3737

3838
"github.com/charmbracelet/log"

cmd/version.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ package cmd
2828
import (
2929
"fmt"
3030
"strings"
31-
"tips/pkg"
32-
"tips/pkg/tailscale_cli"
31+
32+
"github.com/deckarep/tips/pkg"
33+
"github.com/deckarep/tips/pkg/tailscale_cli"
3334

3435
"github.com/spf13/cobra"
3536
)

go.mod

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

33
go 1.21.3
44

0 commit comments

Comments
 (0)