Open
Description
shell command :-
mkdir -p ./{new/{new1,new2},old}
tested with :-
callProcess "mkdir" ["-p" , "./{new/{new1,new2},old}"]
callCommand "mkdir -p ./{new/{new1,new2},old}"
result :-
.
├── {new
│ └── {new1,new1},old}
expected output :-
tree .
.
├── new
│ ├── new1
│ └── new1
└── old
I printed shell command with :-
showCommandForUser "mkdir" ["-p" , "./{new/{new1,new2},old}"]
output :- "mkdir -p './{new/{new1,new2},old}'"
this single single quotes around directory name causing problem
how can i fix this
Metadata
Assignees
Labels
No labels