File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ func doMigrate(from, to int) error {
9898 }
9999
100100 for cur := from ; cur != to ; cur += step {
101- err := runMigration (cur , cur + step )
101+ err := runMigration (cur , cur + step )
102102 if err != nil {
103103 return err
104104 }
@@ -143,7 +143,7 @@ func YesNoPrompt(prompt string) bool {
143143func main () {
144144 target := flag .Int ("to" , CurrentVersion , "specify version to upgrade to" )
145145 yes := flag .Bool ("y" , false , "answer yes to all prompts" )
146- version := flag .Bool ("v" , false , "print highest repo version and exit" )
146+ version := flag .Bool ("v" , false , "print highest repo version handled and exit" )
147147 revertOk := flag .Bool ("revert-ok" , false , "allow running migrations backward" )
148148
149149 flag .Parse ()
You can’t perform that action at this time.
0 commit comments