chore: clarify value delimiter for extensions and features options

This commit is contained in:
rzmk 2025-10-14 05:15:10 -04:00
parent 0fab6f9f41
commit 4808647cea

View file

@ -29,10 +29,10 @@ struct Args {
#[arg(short, long)] #[arg(short, long)]
/// CKAN version to install defined by semantic versioning from official releases from https://github.com/ckan/ckan /// CKAN version to install defined by semantic versioning from official releases from https://github.com/ckan/ckan
ckan_version: Option<String>, ckan_version: Option<String>,
/// List of CKAN extensions to install, separated by either commas or spaces /// List of CKAN extensions to install, separated by spaces
#[arg(short, long, value_parser, num_args = 1.., value_delimiter = ' ')] #[arg(short, long, value_parser, num_args = 1.., value_delimiter = ' ')]
extensions: Option<Vec<String>>, extensions: Option<Vec<String>>,
/// List of custom features, separated by either commas or spaces /// List of custom features, separated by spaces
#[arg(short, long, value_parser, num_args = 1.., value_delimiter = ' ')] #[arg(short, long, value_parser, num_args = 1.., value_delimiter = ' ')]
features: Option<Vec<String>>, features: Option<Vec<String>>,
#[command(subcommand)] #[command(subcommand)]