Skip to content
This repository has been archived by the owner on Nov 23, 2021. It is now read-only.

Commit

Permalink
Revert "Gomod edit imports (#59)"
Browse files Browse the repository at this point in the history
This reverts commit 41dbdeb.
  • Loading branch information
mcoops committed Nov 22, 2021
1 parent 41dbdeb commit 60a064b
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Tests](https://github.com/RedHatProductSecurity/deplist/actions/workflows/go.yml/badge.svg)](https://github.com/RedHatProductSecurity/deplist/actions/workflows/go.yml)
[![Tests](https://github.com/mcoops/deplist/actions/workflows/go.yml/badge.svg)](https://github.com/mcoops/deplist/actions/workflows/go.yml)

# deplist

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

"github.com/RedHatProductSecurity/deplist"
"github.com/mcoops/deplist"
purl "github.com/mcoops/packageurl-go"
log "github.com/sirupsen/logrus"
)
Expand Down
4 changes: 2 additions & 2 deletions deplist.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"path/filepath"
"strings"

"github.com/RedHatProductSecurity/deplist/internal/scan"
"github.com/RedHatProductSecurity/deplist/internal/utils"
"github.com/mcoops/deplist/internal/scan"
"github.com/mcoops/deplist/internal/utils"
)

// enums start at 1 to allow us to specify found languages 0 = nil
Expand Down
2 changes: 1 addition & 1 deletion deplist_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ func BuildWant() []Dependency {
golangPaths := []string{
"errors",
"fmt",
"github.com/RedHatProductSecurity/deplist",
"github.com/mcoops/deplist",
"github.com/openshift/api/config/v1",
"golang.org/x/text/unicode",
"internal/abi",
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/RedHatProductSecurity/deplist
module github.com/mcoops/deplist

go 1.17

Expand Down
2 changes: 1 addition & 1 deletion internal/scan/nodejs.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"
"strings"

"github.com/RedHatProductSecurity/deplist/internal/utils"
"github.com/mcoops/deplist/internal/utils"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion test/testRepo/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/RedHatProductSecurity/deplist
module github.com/mcoops/deplist

go 1.13

Expand Down

0 comments on commit 60a064b

Please sign in to comment.