Skip to content

Commit

Permalink
Merge pull request #2269 from liquibase/fix-legacy-tagexists-cli
Browse files Browse the repository at this point in the history
Correctly handle old "liquibase tagExists myTag" style CLI structure
  • Loading branch information
nvoxland committed Jan 10, 2022
2 parents cf04d4b + f0fd728 commit 61da97e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -98,7 +98,7 @@ public LiquibaseCommandLine() {
this.legacyPositionalArguments.put("futurerollbackcountsql", FutureRollbackCountSqlCommandStep.COUNT_ARG.getName());
this.legacyPositionalArguments.put("futurerollbackfromtagsql", FutureRollbackFromTagSqlCommandStep.TAG_ARG.getName());
this.legacyPositionalArguments.put("tag", TagCommandStep.TAG_ARG.getName());
this.legacyPositionalArguments.put("tagExists", TagExistsCommandStep.TAG_ARG.getName());
this.legacyPositionalArguments.put("tagexists", TagExistsCommandStep.TAG_ARG.getName());
this.legacyPositionalArguments.put("rollback", RollbackCommandStep.TAG_ARG.getName());
this.legacyPositionalArguments.put("rollbacksql", RollbackSqlCommandStep.TAG_ARG.getName());
this.legacyPositionalArguments.put("rollbacktodate", RollbackToDateCommandStep.DATE_ARG.getName());
Expand Down

0 comments on commit 61da97e

Please sign in to comment.