Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update docs URL (DAT-8947) #2348

Merged
merged 4 commits into from Jan 14, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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 key. Get a free Pro license key from https://liquibase.com/protrial");
}
Database database = liquibase.getDatabase();
CommandScope liquibaseCommand = new CommandScope("internalRollbackOneUpdateSQL");
Expand Down