diff options
author | Mattias Andrée <m@maandree.se> | 2025-02-08 15:29:30 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-02-08 15:29:30 +0100 |
commit | 131af4cf34f9685f3223d7c27f6c6a2eb5d26529 (patch) | |
tree | 2397b9754c75abb4107f83c797f728667480c6e5 | |
parent | Forbid - and variable assigment formatted command (diff) | |
download | sshexec-131af4cf34f9685f3223d7c27f6c6a2eb5d26529.tar.gz sshexec-131af4cf34f9685f3223d7c27f6c6a2eb5d26529.tar.bz2 sshexec-131af4cf34f9685f3223d7c27f6c6a2eb5d26529.tar.xz |
Use `exec env --` instead of `exec --`
Signed-off-by: Mattias Andrée <m@maandree.se>
-rw-r--r-- | sshexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -245,7 +245,7 @@ main(int argc_unused, char *argv[]) build_command_escape(dir); build_command_asis(" && "); } - build_command_asis("exec --"); + build_command_asis("exec env --"); for (; *argv; argv++) { build_command_asis(" "); build_command_escape(*argv); |