Skip to content

Commit 1db1182

Browse files
authored
Merge pull request #144 from AkihiroSuda/move-repo
Move from github.com/AkihiroSuda/lima to github.com/lima-vm/lima
2 parents 5619725 + b673ed3 commit 1db1182

39 files changed

+85
-85
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ GO ?= go
66

77
TAR ?= tar
88

9-
PACKAGE := github.com/AkihiroSuda/lima
9+
PACKAGE := github.com/lima-vm/lima
1010

1111
VERSION=$(shell git describe --match 'v[0-9]*' --dirty='.m' --always --tags)
1212
VERSION_TRIMMED := $(VERSION:v%=%)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ $ brew install lima
9090

9191
- On ARM hosts, QEMU has to be patched for enabling `--accel=hvf` support. See https://gist.github.com/nrjdalal/e70249bb5d2e9d844cc203fd11f74c55
9292

93-
- Download the binary archive of Lima from https://github.com/AkihiroSuda/lima/releases ,
93+
- Download the binary archive of Lima from https://github.com/lima-vm/lima/releases ,
9494
and extract it under `/usr/local` (or somewhere else).
9595

9696
- To install Lima from the source, run `make && make install`.
@@ -172,7 +172,7 @@ The current default spec:
172172

173173
### Help wanted
174174
:pray:
175-
- [Test on ARM Mac](https://github.com/AkihiroSuda/lima/issues/42)
175+
- [Test on ARM Mac](https://github.com/lima-vm/lima/issues/42)
176176
- Performance optimization
177177
- More guest distros
178178
- Windows hosts

cmd/lima-guestagent/daemon_linux.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"path/filepath"
99
"time"
1010

11-
"github.com/AkihiroSuda/lima/pkg/guestagent"
12-
"github.com/AkihiroSuda/lima/pkg/guestagent/api/server"
11+
"github.com/lima-vm/lima/pkg/guestagent"
12+
"github.com/lima-vm/lima/pkg/guestagent/api/server"
1313
"github.com/gorilla/mux"
1414
"github.com/sirupsen/logrus"
1515
"github.com/urfave/cli/v2"

cmd/lima-guestagent/install_systemd_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"path/filepath"
99
"strings"
1010

11-
"github.com/AkihiroSuda/lima/pkg/templateutil"
11+
"github.com/lima-vm/lima/pkg/templateutil"
1212
"github.com/sirupsen/logrus"
1313
"github.com/urfave/cli/v2"
1414
)

cmd/lima-guestagent/main_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"strings"
77

8-
"github.com/AkihiroSuda/lima/pkg/version"
8+
"github.com/lima-vm/lima/pkg/version"
99
"github.com/sirupsen/logrus"
1010
"github.com/urfave/cli/v2"
1111
)

cmd/limactl/completion.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ package main
2121
import (
2222
"fmt"
2323

24-
"github.com/AkihiroSuda/lima/pkg/store"
24+
"github.com/lima-vm/lima/pkg/store"
2525
"github.com/urfave/cli/v2"
2626
)
2727

cmd/limactl/copy.go

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

10-
"github.com/AkihiroSuda/lima/pkg/sshutil"
11-
"github.com/AkihiroSuda/lima/pkg/store"
10+
"github.com/lima-vm/lima/pkg/sshutil"
11+
"github.com/lima-vm/lima/pkg/store"
1212
"github.com/pkg/errors"
1313
"github.com/sirupsen/logrus"
1414
"github.com/urfave/cli/v2"

cmd/limactl/delete.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"os"
55

6-
"github.com/AkihiroSuda/lima/pkg/store"
6+
"github.com/lima-vm/lima/pkg/store"
77
"github.com/pkg/errors"
88
"github.com/sirupsen/logrus"
99
"github.com/urfave/cli/v2"

cmd/limactl/hostagent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os/signal"
77
"strconv"
88

9-
"github.com/AkihiroSuda/lima/pkg/hostagent"
9+
"github.com/lima-vm/lima/pkg/hostagent"
1010
"github.com/pkg/errors"
1111
"github.com/urfave/cli/v2"
1212
)

cmd/limactl/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"text/tabwriter"
77

8-
"github.com/AkihiroSuda/lima/pkg/store"
8+
"github.com/lima-vm/lima/pkg/store"
99
"github.com/pkg/errors"
1010
"github.com/sirupsen/logrus"
1111
"github.com/urfave/cli/v2"

0 commit comments

Comments
 (0)