mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-25 17:57:19 +02:00
Remove special case for single quotes
This commit is contained in:
parent
447a375f38
commit
cc1edbdc3f
1 changed files with 1 additions and 1 deletions
|
@ -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) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue