Index: cmd/juju/main.go |
=== modified file 'cmd/juju/main.go' |
--- cmd/juju/main.go 2012-04-26 13:09:06 +0000 |
+++ cmd/juju/main.go 2012-04-27 09:16:35 +0000 |
@@ -24,7 +24,7 @@ |
// to the cmd package. This function is not redundant with main, because it |
// provides an entry point for testing with arbitrary command line arguments. |
func Main(args []string) { |
- juju := cmd.NewSuperCommand("juju", "", jujuDoc) |
+ juju := &cmd.SuperCommand{Name: "juju", Doc: jujuDoc, Log: &cmd.Log{}} |
juju.Register(&BootstrapCommand{}) |
juju.Register(&DestroyCommand{}) |
os.Exit(cmd.Main(juju, cmd.DefaultContext(), args[1:])) |