Fix command name in cargo nih-plug usage string

This commit is contained in:
Robbert van der Helm
2022-03-02 10:34:50 +01:00
parent bb7a1c3586
commit 85ea65c080
2 changed files with 16 additions and 11 deletions

View File

@@ -2,5 +2,5 @@ fn main() -> nih_plug_xtask::Result<()> {
// This includes both the `cargo` command and the `nih-plug` subcommand, so we should get rid of
// those first
let args = std::env::args().skip(2);
nih_plug_xtask::main_with_args(args)
nih_plug_xtask::main_with_args("cargo nih-plug", args)
}