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

Gomod edit imports #59

Merged
merged 4 commits into from
Nov 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/mcoops/deplist/actions/workflows/go.yml/badge.svg)](https://github.com/mcoops/deplist/actions/workflows/go.yml)
[![Tests](https://github.com/RedHatProductSecurity/deplist/actions/workflows/go.yml/badge.svg)](https://github.com/RedHatProductSecurity/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/mcoops/deplist"
"github.com/RedHatProductSecurity/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/mcoops/deplist/internal/scan"
"github.com/mcoops/deplist/internal/utils"
"github.com/RedHatProductSecurity/deplist/internal/scan"
"github.com/RedHatProductSecurity/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/mcoops/deplist",
"github.com/RedHatProductSecurity/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/mcoops/deplist
module github.com/RedHatProductSecurity/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/mcoops/deplist/internal/utils"
"github.com/RedHatProductSecurity/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/mcoops/deplist
module github.com/RedHatProductSecurity/deplist

go 1.13

Expand Down