lib/vx/scm/git/git_ssh.rb in vx-common-0.2.0.pre31 vs lib/vx/scm/git/git_ssh.rb in vx-common-0.2.0.pre32

- old
+ new

@@ -45,10 +45,10 @@ class << self def template(key_location) key = key_location ? "-i #{key_location}" : "" out = ['#!/bin/sh'] - out << "exec /usr/bin/ssh -A -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null #{key} $@" + out << "exec /usr/bin/ssh -A -o LogLevel=quiet -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null #{key} $@" out.join "\n" end end end