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 03fd3e5 commit 9664585Copy full SHA for 9664585
app.go
@@ -26,7 +26,6 @@ package jishell
26
27
import (
28
"fmt"
29
- "github.com/chroblert/jlog"
30
"io"
31
"os"
32
"reflect"
@@ -309,9 +308,7 @@ func (a *App) RunCommand(args []string) error {
309
308
//jlog.Info(reflect.TypeOf(v).Kind().String())
310
if reflect.TypeOf(v.Value).Kind().String() == "string" {
311
if len(v.Value.(string)) > 0 {
312
- jlog.Warn("fg:", k, ":", v.Value)
313
splitArgs, _ := shlex.Split(v.Value.(string), true, false)
314
- jlog.Warn("splitArgs:", splitArgs)
315
fg[k] = &FlagMapItem{
316
Value: splitArgs[0],
317
IsDefault: false,
0 commit comments