1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-04 23:37:41 +02:00

Merge pull request #210 from dawidd6/sirupsen/imports

Sirupsen -> sirupsen
This commit is contained in:
Jesse Duffield 2018-08-24 07:58:47 +10:00 committed by GitHub
commit 22de5e7b23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
25 changed files with 9 additions and 9 deletions

2
Gopkg.lock generated
View File

@ -2,7 +2,7 @@
[[projects]] [[projects]]
name = "github.com/Sirupsen/logrus" name = "github.com/sirupsen/logrus"
packages = ["."] packages = ["."]
revision = "3e01752db0189b9157070a0e1668a620f9a85da2" revision = "3e01752db0189b9157070a0e1668a620f9a85da2"
version = "v1.0.6" version = "v1.0.6"

View File

@ -5,7 +5,7 @@ import (
"io/ioutil" "io/ioutil"
"os" "os"
"github.com/Sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/jesseduffield/lazygit/pkg/commands" "github.com/jesseduffield/lazygit/pkg/commands"
"github.com/jesseduffield/lazygit/pkg/config" "github.com/jesseduffield/lazygit/pkg/config"
"github.com/jesseduffield/lazygit/pkg/gui" "github.com/jesseduffield/lazygit/pkg/gui"

View File

@ -7,7 +7,7 @@ import (
"os/exec" "os/exec"
"strings" "strings"
"github.com/Sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/jesseduffield/gocui" "github.com/jesseduffield/gocui"
"github.com/jesseduffield/lazygit/pkg/utils" "github.com/jesseduffield/lazygit/pkg/utils"
gitconfig "github.com/tcnksm/go-gitconfig" gitconfig "github.com/tcnksm/go-gitconfig"

View File

@ -5,7 +5,7 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/Sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/jesseduffield/lazygit/pkg/test" "github.com/jesseduffield/lazygit/pkg/test"
) )

View File

@ -11,7 +11,7 @@ import (
"github.com/mgutz/str" "github.com/mgutz/str"
"github.com/Sirupsen/logrus" "github.com/sirupsen/logrus"
gitconfig "github.com/tcnksm/go-gitconfig" gitconfig "github.com/tcnksm/go-gitconfig"
) )

View File

@ -7,7 +7,7 @@ import (
"github.com/jesseduffield/lazygit/pkg/commands" "github.com/jesseduffield/lazygit/pkg/commands"
"github.com/jesseduffield/lazygit/pkg/utils" "github.com/jesseduffield/lazygit/pkg/utils"
"github.com/Sirupsen/logrus" "github.com/sirupsen/logrus"
"gopkg.in/src-d/go-git.v4/plumbing" "gopkg.in/src-d/go-git.v4/plumbing"
) )

View File

@ -15,7 +15,7 @@ import (
// "strings" // "strings"
"github.com/Sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/golang-collections/collections/stack" "github.com/golang-collections/collections/stack"
"github.com/jesseduffield/gocui" "github.com/jesseduffield/gocui"
"github.com/jesseduffield/lazygit/pkg/commands" "github.com/jesseduffield/lazygit/pkg/commands"

View File

@ -1,7 +1,7 @@
package i18n package i18n
import ( import (
"github.com/Sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/cloudfoundry/jibber_jabber" "github.com/cloudfoundry/jibber_jabber"
"github.com/nicksnyder/go-i18n/v2/i18n" "github.com/nicksnyder/go-i18n/v2/i18n"
"golang.org/x/text/language" "golang.org/x/text/language"

View File

@ -6,7 +6,7 @@ import (
"github.com/nicksnyder/go-i18n/v2/i18n" "github.com/nicksnyder/go-i18n/v2/i18n"
"github.com/Sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
) )