From b9fb53ed733c9c1321ccf11c94d4e9e6de60023b Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Nogueira Date: Mon, 29 Aug 2022 09:31:21 -0300 Subject: [PATCH] docs(cli): clarify passing arguments to the application on `tauri dev` closes #5079 (#5086) --- tooling/cli/src/dev.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooling/cli/src/dev.rs b/tooling/cli/src/dev.rs index b6256c81b..5acff16fe 100644 --- a/tooling/cli/src/dev.rs +++ b/tooling/cli/src/dev.rs @@ -56,7 +56,7 @@ pub struct Options { /// Run the code in release mode #[clap(long = "release")] pub release_mode: bool, - /// Command line arguments passed to the runner + /// Command line arguments passed to the runner. Arguments after `--` are passed to the application. pub args: Vec, /// Disable the file watcher #[clap(long)]