summaryrefslogtreecommitdiffstats
path: root/lib/puppet/application/resource.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/application/resource.rb')
-rw-r--r--lib/puppet/application/resource.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/puppet/application/resource.rb b/lib/puppet/application/resource.rb
index ae4349850..78aed95c5 100644
--- a/lib/puppet/application/resource.rb
+++ b/lib/puppet/application/resource.rb
@@ -38,11 +38,12 @@ Puppet::Application.new(:resource) do
end
command(:main) do
- type = ARGV.shift or raise "You must specify the type to display"
+ args = Puppet::Util::CommandLine.args
+ type = args.shift or raise "You must specify the type to display"
typeobj = Puppet::Type.type(type) or raise "Could not find type #{type}"
- name = ARGV.shift
+ name = args.shift
params = {}
- ARGV.each do |setting|
+ args.each do |setting|
if setting =~ /^(\w+)=(.+)$/
params[$1] = $2
else