pushes/harmony: remove unneceessary if
This commit is contained in:
parent
81f748347e
commit
913dafd3aa
|
@ -24,8 +24,8 @@ module VagrantPlugins
|
||||||
def execute(uploader)
|
def execute(uploader)
|
||||||
cmd = []
|
cmd = []
|
||||||
cmd << "-vcs" if @config.vcs
|
cmd << "-vcs" if @config.vcs
|
||||||
cmd += @config.include.map { |v| ["-include", v] } if !@config.include.empty?
|
cmd += @config.include.map { |v| ["-include", v] }
|
||||||
cmd += @config.exclude.map { |v| ["-exclude", v] } if !@config.exclude.empty?
|
cmd += @config.exclude.map { |v| ["-exclude", v] }
|
||||||
cmd << @config.app
|
cmd << @config.app
|
||||||
cmd << File.expand_path(@config.dir, @environment.root_path)
|
cmd << File.expand_path(@config.dir, @environment.root_path)
|
||||||
Vagrant::Util::SafeExec.exec(uploader, *cmd.flatten)
|
Vagrant::Util::SafeExec.exec(uploader, *cmd.flatten)
|
||||||
|
|
Loading…
Reference in New Issue