diff options
-rwxr-xr-x | script/land-remote.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/script/land-remote.py b/script/land-remote.py index 93178b57aa2..1009e6bd02b 100755 --- a/script/land-remote.py +++ b/script/land-remote.py @@ -104,6 +104,8 @@ if opts.pushto: remote_args.append("--pushto=%s" % opts.pushto) if opts.push_master: remote_args.append("--push-master") +if opts.fail_slowly: + remote_args.append("--fail-slowly") remote_args += extra_args print "%s$ %s" % (opts.host, " ".join(remote_args)) |