From 374dfc905284241431891d2b9552da6b2aa2c079 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 14 Sep 2022 15:04:07 +0200 Subject: [PATCH] Clarify you can pass other options to xtask --- nih_plug_xtask/src/lib.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nih_plug_xtask/src/lib.rs b/nih_plug_xtask/src/lib.rs index e93ba8e5..7a0902e2 100644 --- a/nih_plug_xtask/src/lib.rs +++ b/nih_plug_xtask/src/lib.rs @@ -20,8 +20,10 @@ const BUNDLE_HOME: &str = "target/bundled"; fn build_usage_string(command_name: &str) -> String { format!( "Usage: - {command_name} bundle [--release] [--target ] - {command_name} bundle -p -p ... [--release] [--target ]" + {command_name} bundle [--release] + {command_name} bundle -p -p ... [--release] + + All other cargo-build options are supported, including --target and --profile." ) }