diff options
-rwxr-xr-x | bin/populate | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/populate b/bin/populate index 358cb36..a0d3750 100755 --- a/bin/populate +++ b/bin/populate @@ -251,14 +251,14 @@ quote() { target_shell() { if is_local_target; then - /bin/sh + /bin/sh "$@" else ssh "$target_host" \ -l "$target_user" \ -o ControlPersist=no \ -p "$target_port" \ -T \ - /bin/sh + /bin/sh "$@" fi } |