whitespace clean-up

master
Tom Vaughan 2013-07-16 21:40:33 -04:00
parent f0a60edf29
commit 757272d6af
1 changed files with 3 additions and 3 deletions

View File

@ -237,14 +237,14 @@ EOF
def deploy_sftp
require 'net/sftp'
require 'ptools'
host = self.deploy_options.host
user = self.deploy_options.user
pass = self.deploy_options.password
path = self.deploy_options.path
puts "## Deploying via sftp to #{user}@#{host}:#{path}"
Net::SFTP.start(host, user, :password => pass) do |sftp|
sftp.mkdir(path)
Dir.chdir(self.inst.build_dir) do