From 04b24cf77edb14167bf8b3105c71959616603604 Mon Sep 17 00:00:00 2001
From: Michael Aaron Murphy <mmstickman@gmail.com>
Date: Thu, 20 Jul 2017 16:17:12 -0400
Subject: [PATCH] Fix Issue #434

---
 src/shell/pipe.rs | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/shell/pipe.rs b/src/shell/pipe.rs
index baf8375e..88789e21 100644
--- a/src/shell/pipe.rs
+++ b/src/shell/pipe.rs
@@ -425,7 +425,11 @@ fn get_full_command(command: &Command) -> String {
     let mut output = String::from(&command[1..command.len()-1]);
     for argument in arg_iter {
         output.push(' ');
-        output.push_str(&argument[1..argument.len()-1]);
+        if argument.len() > 2 {
+            output.push_str(&argument[1..argument.len()-1]);
+        } else {
+            output.push_str(&argument);
+        }
     }
     output
 }
-- 
GitLab