diff options
author | elijah <elijah@riseup.net> | 2015-02-08 13:01:19 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2015-02-08 13:01:19 -0800 |
commit | 5130afca6ff1f5ec49b8abeaccfbe17dec129e32 (patch) | |
tree | c527c4ac1b15fda138d27b8a93db4eb770b1d104 /lib/leap_cli/remote | |
parent | a32c332963e3bca8ab4bd40b636d36a77468e219 (diff) |
pass --info to puppet_command (needed to support logging deploy details)
Diffstat (limited to 'lib/leap_cli/remote')
-rw-r--r-- | lib/leap_cli/remote/puppet_plugin.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/remote/puppet_plugin.rb b/lib/leap_cli/remote/puppet_plugin.rb index e3f6be2..77bb4a3 100644 --- a/lib/leap_cli/remote/puppet_plugin.rb +++ b/lib/leap_cli/remote/puppet_plugin.rb @@ -18,7 +18,7 @@ module LeapCli; module Remote; module PuppetPlugin elsif item[1] === true str << "--" + item[0].to_s else - str << "--" + item[0].to_s + " " + item[1].to_s + str << "--" + item[0].to_s + " " + item[1].inspect end }.join(' ') end |