Merge pull request #24 from jm3/force-build

(optionally) force a build before any deploy
master
Tom Vaughan 2013-06-10 21:03:06 -07:00
commit 264f1082b2
2 changed files with 3 additions and 1 deletions

View File

@ -28,6 +28,7 @@ module Middleman
:aliases => "-c",
:desc => "Remove orphaned files or directories on the remote host"
def deploy
Middleman::Cli::Build.new.build if self.deploy_options.force_build
send("deploy_#{self.deploy_options.method}")
end

View File

@ -5,7 +5,7 @@ require "middleman-core"
module Middleman
module Deploy
class Options < Struct.new(:whatisthis, :method, :host, :port, :user, :password, :path, :clean, :remote, :branch, :after_build); end
class Options < Struct.new(:whatisthis, :method, :host, :port, :user, :password, :path, :clean, :remote, :branch, :after_build, :force_build); end
class << self
@ -23,6 +23,7 @@ module Middleman
options.branch ||= "gh-pages"
options.after_build ||= false
options.force_build ||= false
app.after_build do |builder|
::Middleman::Cli::Deploy.new.deploy if options.after_build