Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ MIT
## Credits
Library | Use
------- | -----
[github.com/flynn-archive/go-shlex](https://github.com/flynn-archive/go-shlex) | splitting input into command and args.
[github.com/GetStream/go-shlex](https://github.com/GetStream/go-shlex) | splitting input into command and args.
[github.com/chzyer/readline](https://github.com/chzyer/readline) | readline capabilities.


Expand Down
2 changes: 1 addition & 1 deletion completer.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package ishell
import (
"strings"

"github.com/flynn-archive/go-shlex"
"github.com/GetStream/go-shlex"
)

type iCompleter struct {
Expand Down
2 changes: 1 addition & 1 deletion ishell.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (

"github.com/chzyer/readline"
"github.com/fatih/color"
"github.com/flynn-archive/go-shlex"
"github.com/GetStream/go-shlex"
)

const (
Expand Down