From 322c8db7d56d9a1144b01d4f3fa02716c390c5a6 Mon Sep 17 00:00:00 2001 From: Hunter Goldstein <hunter.d.goldstein@gmail.com> Date: Thu, 22 Jun 2017 15:24:08 -0400 Subject: [PATCH] Empty argument slice now results in empty command (#335) --- src/shell/job.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell/job.rs b/src/shell/job.rs index 53d2bbcf..6f5c05b6 100644 --- a/src/shell/job.rs +++ b/src/shell/job.rs @@ -41,7 +41,7 @@ impl Job { } self.args = expanded; - self.command = self.args[0].clone().into(); + self.command = self.args.first().map_or("".into(), |c| c.clone().into()); } pub fn build_command(&mut self) -> Command { -- GitLab