From: Micah Anderson Date: Thu, 31 Jan 2013 18:13:59 +0000 (-0500) Subject: fix erroneous space between tags (#1571) X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=1c58ef79e3f2933a03fdb7397153a0493e19ba17;p=leap%2Fleap_cli.git fix erroneous space between tags (#1571) --- diff --git a/lib/leap_cli/commands/deploy.rb b/lib/leap_cli/commands/deploy.rb index ebd8909..e7dffef 100644 --- a/lib/leap_cli/commands/deploy.rb +++ b/lib/leap_cli/commands/deploy.rb @@ -35,7 +35,7 @@ module LeapCli ssh.set :puppet_destination, '/srv/leap' tags = ['leap_base'] tags << 'leap_slow' unless options[:fast] - ssh.set :puppet_command, "/usr/bin/puppet apply --color=false --tags=#{tags.join(', ')}" + ssh.set :puppet_command, "/usr/bin/puppet apply --color=false --tags=#{tags.join(',')}" ssh.set :puppet_lib, "puppet/modules" ssh.set :puppet_parameters, '--libdir puppet/lib --confdir puppet puppet/manifests/site.pp' ssh.set :puppet_stream_output, true