Fix 'dump' command

This commit is contained in:
Alexander Neumann 2015-10-12 22:42:31 +02:00
parent 86fcd170f6
commit 7ab9915859
1 changed files with 0 additions and 9 deletions

View File

@ -144,8 +144,6 @@ func (cmd CmdDump) Execute(args []string) error {
tpe := args[0]
switch tpe {
case "index":
return repo.Index().Dump(os.Stdout)
case "indexes":
return cmd.DumpIndexes()
case "snapshots":
@ -172,13 +170,6 @@ func (cmd CmdDump) Execute(args []string) error {
return err
}
fmt.Printf("\nindex:\n")
err = repo.Index().Dump(os.Stdout)
if err != nil {
return err
}
return nil
default:
return errors.Errorf("no such type %q", tpe)