diff options
author | nicm <nicm> | 2021-09-09 13:38:32 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-09-09 13:38:32 +0000 |
commit | 34312fd6ee8992ce8d13ec63b074466d5f624acc (patch) | |
tree | 4106c6072041d97e80893ad4afba794168fa76de /cmd-run-shell.c | |
parent | 5a4b2fd68c19be99d37b2a3dc9d0bfd7959d1843 (diff) | |
download | rtmux-34312fd6ee8992ce8d13ec63b074466d5f624acc.tar.gz rtmux-34312fd6ee8992ce8d13ec63b074466d5f624acc.tar.bz2 rtmux-34312fd6ee8992ce8d13ec63b074466d5f624acc.zip |
Expand argument to run-shell again.
Diffstat (limited to 'cmd-run-shell.c')
-rw-r--r-- | cmd-run-shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-run-shell.c b/cmd-run-shell.c index 662312fb..7d672f85 100644 --- a/cmd-run-shell.c +++ b/cmd-run-shell.c @@ -132,7 +132,7 @@ cmd_run_shell_exec(struct cmd *self, struct cmdq_item *item) if (cmd != NULL) cdata->cmd = format_single_from_target(item, cmd); } else { - cdata->cmdlist = args_make_commands_now(self, item, 0); + cdata->cmdlist = args_make_commands_now(self, item, 0, 1); if (cdata->cmdlist == NULL) return (CMD_RETURN_ERROR); } |