Skip to content

Commit 0d82472

Browse files
committed
upstream: Sirupsen -> sirupsen name change
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
1 parent 545b209 commit 0d82472

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

fetch/github.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"strings"
77

8-
log "github.com/Sirupsen/logrus"
8+
log "github.com/sirupsen/logrus"
99
"github.com/google/go-github/github"
1010
"golang.org/x/oauth2"
1111
)

fetch/github_deploy_key_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"testing"
88

9-
log "github.com/Sirupsen/logrus"
9+
log "github.com/sirupsen/logrus"
1010

1111
"github.com/stretchr/testify/assert"
1212
)

fetch/github_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"os"
55
"testing"
66

7-
log "github.com/Sirupsen/logrus"
7+
log "github.com/sirupsen/logrus"
88

99
"github.com/stretchr/testify/assert"
1010
)

format/builder.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package format
22

3-
import log "github.com/Sirupsen/logrus"
3+
import log "github.com/sirupsen/logrus"
44

55
// Build builds output in given formatName format
66
func Build(formatName string, keysByUsername map[string][]string, comment string) string {

format/ssh_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package format
33
import (
44
"testing"
55

6-
log "github.com/Sirupsen/logrus"
6+
log "github.com/sirupsen/logrus"
77

88
"github.com/stretchr/testify/assert"
99
)

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
log "github.com/Sirupsen/logrus"
7+
log "github.com/sirupsen/logrus"
88
"github.com/pkg/errors"
99

1010
"github.com/ernoaapa/fetch-ssh-keys/fetch"

output/file_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"testing"
77

8-
log "github.com/Sirupsen/logrus"
8+
log "github.com/sirupsen/logrus"
99
"github.com/stretchr/testify/assert"
1010
)
1111

output/stdout_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package output
33
import (
44
"testing"
55

6-
log "github.com/Sirupsen/logrus"
6+
log "github.com/sirupsen/logrus"
77
)
88

99
func TestStdout(t *testing.T) {

0 commit comments

Comments
 (0)