Skip to content

Commit

Permalink
Merge pull request #37 from momosetkn/feat/fix_liquibse-client_typo
Browse files Browse the repository at this point in the history
Fix liquibase-client typo
  • Loading branch information
momosetkn authored Sep 24, 2024
2 parents abfbc69 + f67be61 commit 115801a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ data class LiquibaseGeneralGlobalArgs(
var trimLoadDataFileHeader: Boolean? = null,
var uiService: String? = null,
var useProcedureSchema: Boolean? = null,
var varidateXmlChangelogFiles: Boolean? = null,
var validateXmlChangelogFiles: Boolean? = null,
) : LiquibaseGlobalArgs {
override fun serialize(): List<String> {
return listOfNotNull(
Expand Down Expand Up @@ -157,7 +157,7 @@ data class LiquibaseGeneralGlobalArgs(
trimLoadDataFileHeader?.let { "--trim-load-data-file-header=$it" },
uiService?.let { "--ui-service=$it" },
useProcedureSchema?.let { "--use-procedure-schema=$it" },
varidateXmlChangelogFiles?.let { "--varidate-xml-changelog-files=$it" },
validateXmlChangelogFiles?.let { "--validate-xml-changelog-files=$it" },
)
}
}
Expand Down

0 comments on commit 115801a

Please sign in to comment.