File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
share/github-backup-utils Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ if [ -z "$GHE_DISABLE_SSH_MUX" ]; then
74
74
# Workaround for https://bugzilla.mindrot.org/show_bug.cgi?id=1988
75
75
if ! [ -S $controlpath ]; then
76
76
# shellcheck disable=SC2090 # We don't need the quote/backslashes respected
77
- ( cd " $TMPDIR " && ssh -f -p $port $opts -o BatchMode=yes " $host " -- /bin/true 1> /dev/null 2>&1 || true )
77
+ ( cd " $TMPDIR " && ssh -f $opts -p $port -o BatchMode=yes " $host " -- /bin/true 1> /dev/null 2>&1 || true )
78
78
fi
79
79
fi
80
80
@@ -83,4 +83,4 @@ $GHE_VERBOSE_SSH && set -x
83
83
84
84
# Exec ssh command with modified host / port args and add nice to command.
85
85
# shellcheck disable=SC2090 # We don't need the quote/backslashes respected
86
- exec ssh -p $port $opts -o BatchMode=yes " $host " -- $GHE_NICE $GHE_IONICE " $@ "
86
+ exec ssh $opts -p $port -o BatchMode=yes " $host " -- $GHE_NICE $GHE_IONICE " $@ "
You can’t perform that action at this time.
0 commit comments