|
@@ -14,8 +14,8 @@ pub struct Options {
|
|
#[clap(long)]
|
|
#[clap(long)]
|
|
pub release: bool,
|
|
pub release: bool,
|
|
/// The command used to wrap your application
|
|
/// The command used to wrap your application
|
|
- #[clap(short, long, default_value = "sudo -E")] // TODO: Portable solution
|
|
|
|
- pub runner: String,
|
|
|
|
|
|
+ #[clap(short, long)]
|
|
|
|
+ pub runner: Option<String>,
|
|
/// Arguments to pass to your application
|
|
/// Arguments to pass to your application
|
|
#[clap(name = "args", last = true)]
|
|
#[clap(name = "args", last = true)]
|
|
pub run_args: Vec<String>,
|
|
pub run_args: Vec<String>,
|
|
@@ -53,7 +53,10 @@ pub fn run(opts: Options) -> Result<(), anyhow::Error> {
|
|
let mut run_args: Vec<_> = opts.run_args.iter().map(String::as_str).collect();
|
|
let mut run_args: Vec<_> = opts.run_args.iter().map(String::as_str).collect();
|
|
|
|
|
|
// configure args
|
|
// configure args
|
|
- let mut args: Vec<_> = opts.runner.trim().split_terminator(' ').collect();
|
|
|
|
|
|
+ let mut args: Vec<_> = Vec::new();
|
|
|
|
+ if let Some(s) = opts.runner.as_deref() {
|
|
|
|
+ args.extend(s.trim().split_terminator(' '));
|
|
|
|
+ };
|
|
args.push(bin_path.as_str());
|
|
args.push(bin_path.as_str());
|
|
args.append(&mut run_args);
|
|
args.append(&mut run_args);
|
|
|
|
|