Skip to content

Commit

Permalink
update docs URL (DAT-8947) (#2348)
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenMassaro committed Jan 14, 2022
1 parent cabacb1 commit 6f3bb08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Expand Up @@ -971,7 +971,7 @@ private void configureHelp(CommandLine.Model.CommandSpec commandSpec, boolean in
"- Environment values (env variable listed above)\n" +
"- Defaults file (configuration key OR argument name)\n\n" +
"Full documentation is available at\n" +
"http://www.liquibase.org";
"https://docs.liquibase.com";


commandSpec.addOption(CommandLine.Model.OptionSpec.builder("--help", "-h")
Expand Down
Expand Up @@ -67,8 +67,7 @@ protected void performLiquibaseTask(Liquibase liquibase) throws LiquibaseExcepti
boolean hasProLicense = MavenUtils.checkProLicense(liquibaseProLicenseKey, commandName, getLog());
if (!hasProLicense) {
throw new LiquibaseException(
"The command 'rollbackOneUpdateSQL' requires a Liquibase Pro License, available at http://www.liquibase.org/download or sales@liquibase.com." +
"Add liquibase.pro.licenseKey as a Maven property or add liquibase.pro.licenseKey=<yourKey> into your defaults file.");
"The 'rollbackOneUpdateSQL' command requires a valid Liquibase Pro license. Get a free Pro license key at https://liquibase.com/protrial and add liquibase.pro.licenseKey=<yourKey> into your defaults file or use --pro-license-key=<yourKey> before your command in the CLI.");
}
Database database = liquibase.getDatabase();
CommandScope liquibaseCommand = new CommandScope("internalRollbackOneUpdateSQL");
Expand Down

0 comments on commit 6f3bb08

Please sign in to comment.