Commit 2cd6a67
committed
[lldb] Escape ? for zsh
Previously on macOS with lldb-argdumper if you ran:
```
lldb -o r -- /tmp/foo "some arg?"
```
It would fail with this error:
```
error: shell expansion failed (reason: lldb-argdumper exited with error 1). consider launching with 'process launch'.
```
stderr is silenced here but the underlying error if you print it for
debugging is:
```
zsh: no matches found: ?
```
This change escapes the `?` so this argument works as expected.1 parent 6976dee commit 2cd6a67
2 files changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
401 | 401 | | |
402 | 402 | | |
403 | 403 | | |
404 | | - | |
| 404 | + | |
405 | 405 | | |
406 | 406 | | |
407 | 407 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
292 | 292 | | |
293 | 293 | | |
294 | 294 | | |
295 | | - | |
296 | | - | |
| 295 | + | |
| 296 | + | |
297 | 297 | | |
298 | 298 | | |
299 | 299 | | |
| |||
0 commit comments