Skip to content

Commit a91f389

Browse files
committed
fix: update module path from mohammed to m7medVision
1 parent 7677af5 commit a91f389

54 files changed

Lines changed: 139 additions & 129 deletions

Some content is hidden

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

go.mod

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

33
go 1.22
44

main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"github.com/docker/docker/client"
1212
"github.com/go-errors/errors"
1313
"github.com/integrii/flaggy"
14-
"github.com/mohammed/lazypodman/pkg/app"
15-
"github.com/mohammed/lazypodman/pkg/config"
16-
"github.com/mohammed/lazypodman/pkg/utils"
14+
"github.com/m7medVision/lazypodman/pkg/app"
15+
"github.com/m7medVision/lazypodman/pkg/config"
16+
"github.com/m7medVision/lazypodman/pkg/utils"
1717
"github.com/jesseduffield/yaml"
1818
"github.com/samber/lo"
1919
)
@@ -47,7 +47,7 @@ func main() {
4747

4848
flaggy.SetName("lazypodman")
4949
flaggy.SetDescription("The lazier way to manage everything podman")
50-
flaggy.DefaultParser.AdditionalHelpPrepend = "https://github.com/mohammed/lazypodman"
50+
flaggy.DefaultParser.AdditionalHelpPrepend = "https://github.com/m7medVision/lazypodman"
5151

5252
flaggy.Bool(&configFlag, "c", "config", "Print the current default config")
5353
flaggy.Bool(&debuggingFlag, "d", "debug", "a boolean")

pkg/app/app.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import (
44
"io"
55
"strings"
66

7-
"github.com/mohammed/lazypodman/pkg/commands"
8-
"github.com/mohammed/lazypodman/pkg/config"
9-
"github.com/mohammed/lazypodman/pkg/gui"
10-
"github.com/mohammed/lazypodman/pkg/i18n"
11-
"github.com/mohammed/lazypodman/pkg/log"
12-
"github.com/mohammed/lazypodman/pkg/utils"
7+
"github.com/m7medVision/lazypodman/pkg/commands"
8+
"github.com/m7medVision/lazypodman/pkg/config"
9+
"github.com/m7medVision/lazypodman/pkg/gui"
10+
"github.com/m7medVision/lazypodman/pkg/i18n"
11+
"github.com/m7medVision/lazypodman/pkg/log"
12+
"github.com/m7medVision/lazypodman/pkg/utils"
1313
"github.com/sirupsen/logrus"
1414
)
1515

pkg/cheatsheet/generate.go

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

16-
"github.com/mohammed/lazypodman/pkg/app"
17-
"github.com/mohammed/lazypodman/pkg/config"
18-
"github.com/mohammed/lazypodman/pkg/gui"
19-
"github.com/mohammed/lazypodman/pkg/i18n"
16+
"github.com/m7medVision/lazypodman/pkg/app"
17+
"github.com/m7medVision/lazypodman/pkg/config"
18+
"github.com/m7medVision/lazypodman/pkg/gui"
19+
"github.com/m7medVision/lazypodman/pkg/i18n"
2020
)
2121

2222
const (

pkg/commands/container.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"github.com/docker/docker/api/types/filters"
1111
"github.com/docker/docker/client"
1212
"github.com/go-errors/errors"
13-
"github.com/mohammed/lazypodman/pkg/i18n"
14-
"github.com/mohammed/lazypodman/pkg/utils"
13+
"github.com/m7medVision/lazypodman/pkg/i18n"
14+
"github.com/m7medVision/lazypodman/pkg/utils"
1515
"github.com/sasha-s/go-deadlock"
1616
"github.com/sirupsen/logrus"
1717
"golang.org/x/xerrors"

pkg/commands/docker.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ import (
2323
"github.com/docker/docker/api/types/container"
2424
"github.com/docker/docker/client"
2525
"github.com/imdario/mergo"
26-
"github.com/mohammed/lazypodman/pkg/commands/ssh"
27-
"github.com/mohammed/lazypodman/pkg/config"
28-
"github.com/mohammed/lazypodman/pkg/i18n"
29-
"github.com/mohammed/lazypodman/pkg/utils"
26+
"github.com/m7medVision/lazypodman/pkg/commands/ssh"
27+
"github.com/m7medVision/lazypodman/pkg/config"
28+
"github.com/m7medVision/lazypodman/pkg/i18n"
29+
"github.com/m7medVision/lazypodman/pkg/utils"
3030
"github.com/sasha-s/go-deadlock"
3131
"github.com/sirupsen/logrus"
3232
)
@@ -159,7 +159,7 @@ func inferComposeProject(config *config.AppConfig) (bool, string) {
159159
// negotiation even when WithAPIVersionNegotiation() is specified.
160160
// Instead, we explicitly configure only what we need, and rely on proper
161161
// API version negotiation to support older Docker daemons.
162-
// See https://github.com/mohammed/lazypodman/issues/715
162+
// See https://github.com/m7medVision/lazypodman/issues/715
163163
func newDockerClient(dockerHost string) (*client.Client, error) {
164164
return client.NewClientWithOpts(
165165
client.WithTLSClientConfigFromEnv(),

pkg/commands/docker_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import (
66
"testing"
77

88
"github.com/docker/docker/client"
9-
"github.com/mohammed/lazypodman/pkg/config"
9+
"github.com/m7medVision/lazypodman/pkg/config"
1010
"github.com/stretchr/testify/assert"
1111
)
1212

1313
// TestNewDockerClientVersionNegotiation verifies that newDockerClient allows
1414
// API version negotiation even when DOCKER_API_VERSION is set.
1515
//
16-
// This is a regression test for https://github.com/mohammed/lazypodman/issues/715
16+
// This is a regression test for https://github.com/m7medVision/lazypodman/issues/715
1717
// where users got "client version 1.25 is too old" errors because FromEnv()
1818
// includes WithVersionFromEnv() which sets manualOverride=true, preventing
1919
// API version negotiation.

pkg/commands/dummies.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package commands
33
import (
44
"io"
55

6-
"github.com/mohammed/lazypodman/pkg/config"
7-
"github.com/mohammed/lazypodman/pkg/i18n"
6+
"github.com/m7medVision/lazypodman/pkg/config"
7+
"github.com/m7medVision/lazypodman/pkg/i18n"
88
"github.com/sirupsen/logrus"
99
)
1010

pkg/commands/image.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/docker/docker/api/types/image"
99
"github.com/docker/docker/client"
1010
"github.com/fatih/color"
11-
"github.com/mohammed/lazypodman/pkg/utils"
11+
"github.com/m7medVision/lazypodman/pkg/utils"
1212
"github.com/samber/lo"
1313
"github.com/sirupsen/logrus"
1414
)

pkg/commands/os.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"github.com/go-errors/errors"
1515

1616
"github.com/jesseduffield/kill"
17-
"github.com/mohammed/lazypodman/pkg/config"
18-
"github.com/mohammed/lazypodman/pkg/utils"
17+
"github.com/m7medVision/lazypodman/pkg/config"
18+
"github.com/m7medVision/lazypodman/pkg/utils"
1919
"github.com/mgutz/str"
2020
"github.com/sirupsen/logrus"
2121
)

0 commit comments

Comments
 (0)