Skip to content

Commit

Permalink
fix(plc4go): fix go install by changing to fork
Browse files Browse the repository at this point in the history
- This is due to golang/go#44840
  • Loading branch information
sruehl committed Aug 5, 2022
1 parent a57705d commit b67679f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions plc4go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ require (
github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213
github.com/libp2p/go-reuseport v0.2.0
github.com/pkg/errors v0.9.1
github.com/rivo/tview v0.0.0-20220728094620-c6cff75ed57b
github.com/rs/zerolog v1.27.0
github.com/schollz/progressbar/v3 v3.9.0
github.com/snksoft/crc v1.1.0
github.com/spf13/cobra v1.5.0
github.com/spf13/viper v1.12.0
github.com/sruehl/tview v0.0.0-20220805140909-9904944d3e75
github.com/stretchr/testify v1.8.0
github.com/subchen/go-xmldom v1.1.2
github.com/viney-shih/go-lock v1.1.2
Expand Down Expand Up @@ -75,5 +75,3 @@ require (
gopkg.in/ini.v1 v1.66.4 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)

replace github.com/rivo/tview => github.com/sruehl/tview v0.0.0-20220805132948-aa2a6efb27b5
4 changes: 2 additions & 2 deletions plc4go/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
github.com/spf13/viper v1.12.0 h1:CZ7eSOd3kZoaYDLbXnmzgQI5RlciuXBMA+18HwHRfZQ=
github.com/spf13/viper v1.12.0/go.mod h1:b6COn30jlNxbm/V2IqWiNWkJ+vZNiMNksliPCiuKtSI=
github.com/sruehl/tview v0.0.0-20220805132948-aa2a6efb27b5 h1:a5kH/70vAskhgZPGy9AQtOp/7JXl3U2LsQrewsRWksQ=
github.com/sruehl/tview v0.0.0-20220805132948-aa2a6efb27b5/go.mod h1:8NHTlQK5nUcLMAPupYd8thZnu/6jlEWYdJZNcaggXFw=
github.com/sruehl/tview v0.0.0-20220805140909-9904944d3e75 h1:BKtJBki9pA52/f8D3HzBBuC5RPsE8OruGa4A6X0k0/8=
github.com/sruehl/tview v0.0.0-20220805140909-9904944d3e75/go.mod h1:bDM4jV6fta45V303GZ1fyMBAsqYl/rjv0fosVbI/7T4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
github.com/stretchr/testify v1.2.1/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
Expand Down
2 changes: 1 addition & 1 deletion plc4go/tools/plc4xbrowser/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ import (
plc4go "github.com/apache/plc4x/plc4go/pkg/api"
"github.com/apache/plc4x/plc4go/pkg/api/transports"
"github.com/pkg/errors"
"github.com/rivo/tview"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"github.com/sruehl/tview"
)

func initSubsystem() {
Expand Down
2 changes: 1 addition & 1 deletion plc4go/tools/plc4xbrowser/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ import (
plc4x_config "github.com/apache/plc4x/plc4go/pkg/api/config"
"github.com/apache/plc4x/plc4go/pkg/api/model"
"github.com/pkg/errors"
"github.com/rivo/tview"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"github.com/sruehl/tview"
"net/url"
"strings"
"time"
Expand Down
2 changes: 1 addition & 1 deletion plc4go/tools/plc4xbrowser/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"github.com/apache/plc4x/plc4go/pkg/api/model"
"github.com/gdamore/tcell/v2"
"github.com/pkg/errors"
"github.com/rivo/tview"
"github.com/sruehl/tview"
"regexp"
"strconv"
"time"
Expand Down

0 comments on commit b67679f

Please sign in to comment.