diff options
author | elijah <elijah@riseup.net> | 2014-10-22 01:29:39 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2014-10-22 01:29:39 -0700 |
commit | 09bd68966c57eb9b464625eb2c2bb86d14847c0f (patch) | |
tree | 76f7f2879ac3537497007252d98f8af17e6bb233 /lib | |
parent | e44e2085f1e186264692096db1b7d426849ab7d7 (diff) |
bug fix: fixed bad default for --tags in `leap deploy`
Diffstat (limited to 'lib')
-rw-r--r-- | lib/leap_cli/commands/deploy.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/commands/deploy.rb b/lib/leap_cli/commands/deploy.rb index f1ba5b8..855a820 100644 --- a/lib/leap_cli/commands/deploy.rb +++ b/lib/leap_cli/commands/deploy.rb @@ -22,7 +22,7 @@ module LeapCli # --tags c.flag :tags, :desc => 'Specify tags to pass through to puppet (overriding the default).', - :default_value => "see platform.rb", :arg_name => 'TAG[,TAG]' + :arg_name => 'TAG[,TAG]' c.flag :port, :desc => 'Override the default SSH port.', :arg_name => 'PORT' |