Skip to content

Commit 4f63360

Browse files
committed
Add alpha note on interactive mode
1 parent fbe96ee commit 4f63360

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/cli/command.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ type CLI struct {
2323

2424
Query QueryCmd `cmd:"" default:"withargs" help:"[default] Execute a query"`
2525
Version VersionCmd `cmd:"" help:"Print the version"`
26-
Interactive InteractiveCmd `cmd:"" help:"Start an interactive session"`
26+
Interactive InteractiveCmd `cmd:"" help:"Start an interactive session (alpha)"`
2727
}
2828

2929
func MustRun(stdin io.Reader, stdout, stderr io.Writer) {

internal/cli/query.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ type QueryCmd struct {
1111
OutFormat string `flag:"" name:"out" short:"o" help:"The format of the output data."`
1212
ReturnRoot bool `flag:"" name:"root" help:"Return the root value."`
1313
Unstable bool `flag:"" name:"unstable" help:"Allow access to potentially unstable features."`
14-
Interactive bool `flag:"" name:"it" help:"Run in interactive mode."`
14+
Interactive bool `flag:"" name:"it" help:"Run in interactive mode (alpha)."`
1515

1616
ConfigPath string `name:"config" short:"c" help:"Path to config file" default:"~/dasel.yaml"`
1717

0 commit comments

Comments
 (0)