update dependencies

This commit is contained in:
Cory Bennett
2017-09-06 11:35:00 -07:00
parent 9453179251
commit aa876cd588
308 changed files with 46154 additions and 33733 deletions
+3 -4
View File
@@ -2,12 +2,11 @@ package survey
import (
"errors"
"fmt"
"os"
"strings"
"github.com/AlecAivazis/survey/core"
"github.com/AlecAivazis/survey/terminal"
"gopkg.in/AlecAivazis/survey.v1/core"
"gopkg.in/AlecAivazis/survey.v1/terminal"
)
/*
@@ -170,7 +169,7 @@ func (m *MultiSelect) Prompt() (interface{}, error) {
break
}
if r == terminal.KeyInterrupt {
return "", fmt.Errorf("interrupt")
return "", terminal.InterruptErr
}
if r == terminal.KeyEndTransmission {
break