Command help does not work for a command (e.g. flyway help migrate)
Jose_Goncalves
Posts: 3 New member
I'm using the docker image redgate/flyway:10.20.0 (community edition).
And I'm trying execute the command help for a command but I get a generic help output not the (expected) specific help of the command:
<div># flyway help migrate</div><div>Usage</div><div> flyway [options] [command]</div><div> flyway help [command]</div><div><br></div><div>By default, the configuration will be read from conf/flyway.conf.</div><div>Options passed from the command-line override the configuration.</div><div><br></div><div>Commands</div><div> help Print this usage info and exit</div><div> auth Authenticates Flyway with Redgate licensing</div><div> ...</div>
Neither "flyway --help migrate" or "flyway -h migrate" variants work well.
I found the same issue for others commands (baseline, clean, repair, ...).
Curiously the help of check command work fine ("flyway help check").
Answers
It looks like it is typically implemented for new things we are adding to Flyway but never made it consistently into the established verbs
That's why I expected that "help" @CLI could help the flyway user...