Skip to content

Commit

Permalink
Merge pull request #275 from x-motemen/module
Browse files Browse the repository at this point in the history
update module name to github.com/x-motemen/ghq and fix import paths
  • Loading branch information
Songmu authored Jan 24, 2020
2 parents 6d72e39 + 6171577 commit 3a5500a
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion cmd_create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"sync"
"testing"

"github.com/motemen/ghq/cmdutil"
"github.com/x-motemen/ghq/cmdutil"
)

func TestDoCreate(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions cmd_get.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"sync"

"github.com/mattn/go-isatty"
"github.com/motemen/ghq/cmdutil"
"github.com/motemen/ghq/logger"
"github.com/x-motemen/ghq/cmdutil"
"github.com/x-motemen/ghq/logger"
"github.com/urfave/cli/v2"
"golang.org/x/sync/errgroup"
)
Expand Down
6 changes: 3 additions & 3 deletions cmd_get_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"testing"

"github.com/Songmu/gitconfig"
"github.com/motemen/ghq/cmdutil"
"github.com/motemen/ghq/logger"
"github.com/x-motemen/ghq/cmdutil"
"github.com/x-motemen/ghq/logger"
)

func TestCommandGet(t *testing.T) {
Expand Down Expand Up @@ -240,7 +240,7 @@ func TestLook(t *testing.T) {

func TestDoGet_bulk(t *testing.T) {
in := []string{
"github.com/motemen/ghq",
"github.com/x-motemen/ghq",
"github.com/motemen/gore",
}

Expand Down
2 changes: 1 addition & 1 deletion cmdutil/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os/exec"
"strings"

"github.com/motemen/ghq/logger"
"github.com/x-motemen/ghq/logger"
)

// Run the command
Expand Down
2 changes: 1 addition & 1 deletion getter.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"sync"

"github.com/motemen/ghq/logger"
"github.com/x-motemen/ghq/logger"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/motemen/ghq
module github.com/x-motemen/ghq

go 1.13

Expand Down
2 changes: 1 addition & 1 deletion local_repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"sync"

"github.com/Songmu/gitconfig"
"github.com/motemen/ghq/logger"
"github.com/x-motemen/ghq/logger"
"github.com/saracen/walker"
)

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/motemen/ghq/logger"
"github.com/x-motemen/ghq/logger"
"github.com/urfave/cli/v2"
)

Expand Down
4 changes: 2 additions & 2 deletions remote_repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"strings"

"github.com/Songmu/gitconfig"
"github.com/motemen/ghq/cmdutil"
"github.com/motemen/ghq/logger"
"github.com/x-motemen/ghq/cmdutil"
"github.com/x-motemen/ghq/logger"
)

// A RemoteRepository represents a remote repository.
Expand Down
2 changes: 1 addition & 1 deletion url.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"

"github.com/Songmu/gitconfig"
"github.com/motemen/ghq/logger"
"github.com/x-motemen/ghq/logger"
)

// Convert SCP-like URL to SSH URL(e.g. [user@]host.xz:path/to/repo.git/)
Expand Down
2 changes: 1 addition & 1 deletion vcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"regexp"
"strings"

"github.com/motemen/ghq/cmdutil"
"github.com/x-motemen/ghq/cmdutil"
)

func run(silent bool) func(command string, args ...string) error {
Expand Down
2 changes: 1 addition & 1 deletion vcs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"reflect"
"testing"

"github.com/motemen/ghq/cmdutil"
"github.com/x-motemen/ghq/cmdutil"
)

var (
Expand Down

0 comments on commit 3a5500a

Please sign in to comment.