From efcb855db77d47d03773f7dc77d3c84d911968b5 Mon Sep 17 00:00:00 2001 From: Matthew Kent Date: Sun, 12 Nov 2023 23:42:42 -0800 Subject: [PATCH] Advertise wildcard support. --- lib/kamal/cli/base.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/kamal/cli/base.rb b/lib/kamal/cli/base.rb index 9a38d97e5..7cd69fc6c 100644 --- a/lib/kamal/cli/base.rb +++ b/lib/kamal/cli/base.rb @@ -14,8 +14,8 @@ def self.exit_on_failure?() true end class_option :version, desc: "Run commands against a specific app version" class_option :primary, type: :boolean, aliases: "-p", desc: "Run commands only on primary host instead of all" - class_option :hosts, aliases: "-h", desc: "Run commands on these hosts instead of all (separate by comma)" - class_option :roles, aliases: "-r", desc: "Run commands on these roles instead of all (separate by comma)" + class_option :hosts, aliases: "-h", desc: "Run commands on these hosts instead of all (separate by comma, supports wildcards with *)" + class_option :roles, aliases: "-r", desc: "Run commands on these roles instead of all (separate by comma, supports wildcards with *)" class_option :config_file, aliases: "-c", default: "config/deploy.yml", desc: "Path to config file" class_option :destination, aliases: "-d", desc: "Specify destination to be used for config file (staging -> deploy.staging.yml)"