We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abf4720 commit a1a14f2Copy full SHA for a1a14f2
cli/shell_runner.go
@@ -93,7 +93,7 @@ func findPotentialCommands(cmdLine string) (cmds []string) {
93
lines := strings.Split(cmdLine, "\n")
94
for _, line := range lines {
95
line = strings.TrimSpace(line)
96
- reg, err := regexp.Compile(`^(hd|curl|wget|k3d|docker)`)
+ reg, err := regexp.Compile(`^(hd|curl|wget|k3d|docker|jcli)`)
97
if err == nil && reg.Match([]byte(line)) {
98
if cmd := reg.Find([]byte(line)); cmd != nil {
99
cmds = append(cmds, string(cmd))
0 commit comments