Merge pull request #3 from nathanleclaire/djfarrelly-filter-create-help-cmd

Fix ordering issue
This commit is contained in:
Dan Farrelly 2015-04-10 13:48:39 -04:00
commit efeb23d4a7
1 changed files with 1 additions and 1 deletions

View File

@ -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...)
}
}