Skip to content

Commit

Permalink
internal/scaffold: fix go.mod scaffolds using openshift/api replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
joelanford committed Jan 25, 2020
1 parent a0bb8da commit 38de5f7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

### Bug Fixes

- Fixed issue with Go dependencies caused by removed tag in `openshift/api` repository ([#2466](https://github.com/operator-framework/operator-sdk/issues/2466))

## v0.15.0

### Added
Expand Down
1 change: 1 addition & 0 deletions internal/scaffold/ansible/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ replace (
)
replace github.com/docker/docker => github.com/moby/moby v0.7.3-0.20190826074503-38ab9da00309 // Required by Helm
replace github.com/openshift/api => github.com/openshift/api v0.0.0-20190924102528-32369d4db2ad // Required until https://github.com/operator-framework/operator-lifecycle-manager/pull/1241 is resolved
`

func PrintGoMod() error {
Expand Down
1 change: 1 addition & 0 deletions internal/scaffold/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ replace (
)
replace github.com/docker/docker => github.com/moby/moby v0.7.3-0.20190826074503-38ab9da00309 // Required by Helm
replace github.com/openshift/api => github.com/openshift/api v0.0.0-20190924102528-32369d4db2ad // Required until https://github.com/operator-framework/operator-lifecycle-manager/pull/1241 is resolved
`

func PrintGoMod() error {
Expand Down
1 change: 1 addition & 0 deletions internal/scaffold/helm/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ replace (
)
replace github.com/docker/docker => github.com/moby/moby v0.7.3-0.20190826074503-38ab9da00309 // Required by Helm
replace github.com/openshift/api => github.com/openshift/api v0.0.0-20190924102528-32369d4db2ad // Required until https://github.com/operator-framework/operator-lifecycle-manager/pull/1241 is resolved
`

func PrintGoMod() error {
Expand Down

0 comments on commit 38de5f7

Please sign in to comment.