diff options
author | nicm <nicm> | 2021-10-11 10:55:30 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-10-11 10:55:30 +0000 |
commit | 759efe1b3327a7244c03ecc7b90e0e3c49712d06 (patch) | |
tree | 58e4302cb00b591f010c38a6871b1e9a779da5a3 /cmd-run-shell.c | |
parent | 7800a431ea63f3be4f0763df3f3a2fae44aeac58 (diff) | |
download | rtmux-759efe1b3327a7244c03ecc7b90e0e3c49712d06.tar.gz rtmux-759efe1b3327a7244c03ecc7b90e0e3c49712d06.tar.bz2 rtmux-759efe1b3327a7244c03ecc7b90e0e3c49712d06.zip |
Add -e flag to set environment for popup, from Alexis Hildebrandt in
GitHub issue 2924.
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 bf43d313..5e914e65 100644 --- a/cmd-run-shell.c +++ b/cmd-run-shell.c @@ -188,7 +188,7 @@ cmd_run_shell_timer(__unused int fd, __unused short events, void* arg) cmd_run_shell_free(cdata); return; } - if (job_run(cmd, 0, NULL, cdata->s, cdata->cwd, NULL, + if (job_run(cmd, 0, NULL, NULL, cdata->s, cdata->cwd, NULL, cmd_run_shell_callback, cmd_run_shell_free, cdata, cdata->flags, -1, -1) == NULL) cmd_run_shell_free(cdata); |