1
0
Fork 0
nih-plug/cargo_nih_plug/src/main.rs
2022-03-02 10:34:50 +01:00

7 lines
264 B
Rust

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("cargo nih-plug", args)
}