mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 17:15:56 +00:00
Fix std{in,out,err} in export cmd
This commit is contained in:
parent
480c853a3e
commit
fe1208ac65
1 changed files with 1 additions and 2 deletions
|
|
@ -17,7 +17,6 @@ package cmd
|
|||
import (
|
||||
"context"
|
||||
"io"
|
||||
"os"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
|
|
@ -27,7 +26,7 @@ import (
|
|||
var Exporter *ctl.ExportCommand
|
||||
|
||||
func newExportCommand(stdin io.Reader, stdout, stderr io.Writer) *cobra.Command {
|
||||
Exporter = ctl.NewExportCommand(os.Stdin, os.Stdout, os.Stderr)
|
||||
Exporter = ctl.NewExportCommand(stdin, stdout, stderr)
|
||||
exportCmd := &cobra.Command{
|
||||
Use: "export",
|
||||
Short: "Export data from pilosa.",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue