From cc1edbdc3fc3ca0ddf67074b77e38d5f5c412228 Mon Sep 17 00:00:00 2001 From: Dheepak Krishnamurthy Date: Sat, 13 Mar 2021 13:19:15 -0700 Subject: [PATCH] Remove special case for single quotes --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index d8c96af..55864e9 100644 --- a/src/app.rs +++ b/src/app.rs @@ -1162,7 +1162,7 @@ impl TTApp { let mut command = Command::new("task"); command.arg("add"); - let shell = self.command.as_str().replace("'", "\\'"); + let shell = self.command.as_str(); match shlex::split(&shell) { Some(cmd) => {