diff --git a/README.md b/README.md index bd60478..3983424 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # carapace-shlex -[![PkgGoDev](https://pkg.go.dev/badge/github.com/rsteube/carapace-shlex)](https://pkg.go.dev/github.com/rsteube/carapace-shlex) -[![GoReportCard](https://goreportcard.com/badge/github.com/rsteube/carapace-shlex)](https://goreportcard.com/report/github.com/rsteube/carapace-shlex) -[![Coverage Status](https://coveralls.io/repos/github/rsteube/carapace-shlex/badge.svg?branch=master)](https://coveralls.io/github/rsteube/carapace-shlex?branch=master) +[![PkgGoDev](https://pkg.go.dev/badge/github.com/carapace-sh/carapace-shlex)](https://pkg.go.dev/github.com/carapace-sh/carapace-shlex) +[![GoReportCard](https://goreportcard.com/badge/github.com/carapace-sh/carapace-shlex)](https://goreportcard.com/report/github.com/carapace-sh/carapace-shlex) +[![Coverage Status](https://coveralls.io/repos/github/carapace-sh/carapace-shlex/badge.svg?branch=master)](https://coveralls.io/github/carapace-sh/carapace-shlex?branch=master) Fork of [go-shlex](https://github.com/google/shlex) aimed to enable completion of complex commands passed as single argument with [Split] in [carapace]. diff --git a/cmd/carapace-shlex/cmd/root.go b/cmd/carapace-shlex/cmd/root.go index 26a974f..063cb71 100644 --- a/cmd/carapace-shlex/cmd/root.go +++ b/cmd/carapace-shlex/cmd/root.go @@ -4,9 +4,9 @@ import ( "encoding/json" "fmt" + shlex "github.com/carapace-sh/carapace-shlex" "github.com/rsteube/carapace" "github.com/rsteube/carapace-bridge/pkg/actions/bridge" - shlex "github.com/rsteube/carapace-shlex" "github.com/spf13/cobra" ) diff --git a/cmd/carapace-shlex/main.go b/cmd/carapace-shlex/main.go index 6d7c4db..07997a4 100644 --- a/cmd/carapace-shlex/main.go +++ b/cmd/carapace-shlex/main.go @@ -1,6 +1,6 @@ package main -import "github.com/rsteube/carapace-shlex/cmd/carapace-shlex/cmd" +import "github.com/carapace-sh/carapace-shlex/cmd/carapace-shlex/cmd" func main() { cmd.Execute() diff --git a/cmd/go.mod b/cmd/go.mod index 7845674..37bffdc 100644 --- a/cmd/go.mod +++ b/cmd/go.mod @@ -1,12 +1,12 @@ -module github.com/rsteube/carapace-shlex/cmd +module github.com/carapace-sh/carapace-shlex/cmd go 1.13 require ( github.com/rsteube/carapace v0.50.2 github.com/rsteube/carapace-bridge v0.2.15 - github.com/rsteube/carapace-shlex v0.1.2 + github.com/carapace-sh/carapace-shlex v0.1.2 github.com/spf13/cobra v1.8.0 ) -replace github.com/rsteube/carapace-shlex => ../ +replace github.com/carapace-sh/carapace-shlex => ../ diff --git a/go.mod b/go.mod index 99fa671..071bbe5 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/rsteube/carapace-shlex +module github.com/carapace-sh/carapace-shlex go 1.15