1
0
Fork 0

Clarify you can pass other options to xtask

This commit is contained in:
Robbert van der Helm 2022-09-14 15:04:07 +02:00
parent 963d1bd14f
commit 374dfc9052

View file

@ -20,8 +20,10 @@ const BUNDLE_HOME: &str = "target/bundled";
fn build_usage_string(command_name: &str) -> String { fn build_usage_string(command_name: &str) -> String {
format!( format!(
"Usage: "Usage:
{command_name} bundle <package> [--release] [--target <triple>] {command_name} bundle <package> [--release]
{command_name} bundle -p <package1> -p <package2> ... [--release] [--target <triple>]" {command_name} bundle -p <package1> -p <package2> ... [--release]
All other cargo-build options are supported, including --target and --profile."
) )
} }