lib/nanoc/cli/commands/validate-links.rb in nanoc-3.6.7 vs lib/nanoc/cli/commands/validate-links.rb in nanoc-3.6.8

- old
+ new

@@ -2,22 +2,22 @@ usage 'validate-links [options]' aliases :validate_links, :vlink summary 'validate links in site' be_hidden -description <<-EOS +description " Validates the site’s links. By default, both internal and external links will be checked. -EOS +" flag :i, :internal, 'validate internal links only' flag :e, :external, 'validate external links only' module Nanoc::CLI::Commands class ValidateLinks < ::Nanoc::CLI::CommandRunner def run - warn "The `validate-links` command is deprecated. Please use the new `check` command instead." + warn 'The `validate-links` command is deprecated. Please use the new `check` command instead.' checks = [] checks << 'ilinks' if options[:internal] checks << 'elinks' if options[:external] Nanoc::CLI.run [ 'check', checks ].flatten