summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/populate4
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
}