Skip to content
This repository was archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Fix wrong dependency import for Pty
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake Watters committed Jun 3, 2020
1 parent fad5622 commit a0bdced
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion command/servo.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"syscall"

"github.com/AlecAivazis/survey/v2"
"github.com/kr/pty"
"github.com/creack/pty"
"github.com/mitchellh/go-homedir"
"github.com/olekukonko/tablewriter"
"github.com/spf13/cobra"
Expand Down
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ require (
github.com/alecthomas/repr v0.0.0-20200325044227-4184120f674c // indirect
github.com/briandowns/spinner v1.11.1
github.com/charmbracelet/glamour v0.1.0
github.com/creack/pty v1.1.11
github.com/docker/docker v1.13.1
github.com/fatih/color v1.9.0
github.com/fsnotify/fsnotify v1.4.9 // indirect
Expand All @@ -19,7 +20,7 @@ require (
github.com/google/go-cmp v0.4.0 // indirect
github.com/hinshun/vt10x v0.0.0-20180616224451-1954e6464174
github.com/hokaccha/go-prettyjson v0.0.0-20190818114111-108c894c2c0e
github.com/kr/pty v1.1.8
github.com/kr/pty v1.1.8 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/markbates/pkger v0.17.0
github.com/mattn/go-colorable v0.1.6 // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsr
github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=
github.com/creack/pty v1.1.9 h1:uDmaGzcdjhF4i/plgjmEsriH11Y0o7RKapEf/LDaM3w=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/creack/pty v1.1.11 h1:07n33Z8lZxZ2qwegKbObQohDhXDQxiMMz1NOUGYlesw=
github.com/creack/pty v1.1.11/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/daaku/go.zipexe v1.0.0/go.mod h1:z8IiR6TsVLEYKwXAoE/I+8ys/sDkgTzSL0CLnGVd57E=
github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964 h1:y5HC9v93H5EPKqaS1UYVg1uYah5Xf51mBfIoWehClUQ=
github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964/go.mod h1:Xd9hchkHSWYkEqJwUGisez3G1QY8Ryz0sdWrLPMGjLk=
Expand Down

0 comments on commit a0bdced

Please sign in to comment.