fix cross-build

This commit is contained in:
Chao Xu
2017-04-14 11:39:35 -07:00
parent ce860e187c
commit 59396e6b13
2 changed files with 7 additions and 2 deletions

View File

@@ -18,7 +18,11 @@ limitations under the License.
package term
func SetSize(fd uintptr, size Size) error {
import (
"k8s.io/kubernetes/pkg/client/unversioned/remotecommand"
)
func SetSize(fd uintptr, size remotecommand.TerminalSize) error {
// NOP
return nil
}