From 2059647ccb4fa3895e31c6a7ee5e0cacc1d82a46 Mon Sep 17 00:00:00 2001 From: Nathan LeClaire Date: Fri, 10 Apr 2015 10:41:20 -0700 Subject: [PATCH] Fix ordering issue Signed-off-by: Nathan LeClaire --- commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.go b/commands.go index 01c82e2112..e08b2e5d29 100644 --- a/commands.go +++ b/commands.go @@ -381,7 +381,7 @@ func trimDriverFlags(driver string, cmds []cli.Command) ([]cli.Command, error) { for i, cmd := range cmds { if cmd.HasName("create") { - filteredCmds[i].Flags = append(sharedCreateFlags, driverFlags...) + filteredCmds[i].Flags = append(driverFlags, sharedCreateFlags...) } }