Remove special case for single quotes

This commit is contained in:
Dheepak Krishnamurthy 2021-03-13 13:19:15 -07:00
parent 447a375f38
commit cc1edbdc3f

View file

@ -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) => {