Skip to content

Commit

Permalink
upstream: Sirupsen -> sirupsen name change
Browse files Browse the repository at this point in the history
In 2018 the GitHub "organization" github.com/Sirupsen changed to all
lower case.  While this was fine in a pre "Go Modules" world, this cases
breaking changes when using modules within Go.

A number of other Go projects have experienced this, for more detail
reference the following:

golang/go#28489
golang/go#26208
  • Loading branch information
brianredbeard committed Jan 9, 2020
1 parent 545b209 commit 0d82472
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion fetch/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"strings"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/google/go-github/github"
"golang.org/x/oauth2"
)
Expand Down
2 changes: 1 addition & 1 deletion fetch/github_deploy_key_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"testing"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"

"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion fetch/github_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"testing"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"

"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion format/builder.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package format

import log "github.com/Sirupsen/logrus"
import log "github.com/sirupsen/logrus"

// Build builds output in given formatName format
func Build(formatName string, keysByUsername map[string][]string, comment string) string {
Expand Down
2 changes: 1 addition & 1 deletion format/ssh_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package format
import (
"testing"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"

"github.com/stretchr/testify/assert"
)
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"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/pkg/errors"

"github.com/ernoaapa/fetch-ssh-keys/fetch"
Expand Down
2 changes: 1 addition & 1 deletion output/file_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"testing"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion output/stdout_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package output
import (
"testing"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"
)

func TestStdout(t *testing.T) {
Expand Down

0 comments on commit 0d82472

Please sign in to comment.