summaryrefslogtreecommitdiffstats
path: root/install.rb
diff options
context:
space:
mode:
authorTodd Zullinger <tmz@pobox.com>2010-07-13 10:30:41 -0400
committerMarkus Roberts <Markus@reality.com>2010-07-13 23:09:37 -0700
commit9df87e986c28491c0924899943c8b00ed967313a (patch)
tree21ea3783b326bf3c1967215629c4802839dd5cdb /install.rb
parent04228528d1f8e4d36e1643ac0cf51281b81ef9fb (diff)
downloadpuppet-9df87e986c28491c0924899943c8b00ed967313a.tar.gz
puppet-9df87e986c28491c0924899943c8b00ed967313a.tar.xz
puppet-9df87e986c28491c0924899943c8b00ed967313a.zip
[#4219] Install misses command_line dir, puppet $app --help fails
Diffstat (limited to 'install.rb')
-rwxr-xr-xinstall.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.rb b/install.rb
index d35aaa01a..b06ec09fd 100755
--- a/install.rb
+++ b/install.rb
@@ -84,7 +84,7 @@ bins = glob(%w{bin/*})
rdoc = glob(%w{bin/* sbin/* lib/**/*.rb README README-library CHANGELOG TODO Install}).reject { |e| e=~ /\.(bat|cmd)$/ }
ri = glob(%w{bin/*.rb sbin/* lib/**/*.rb}).reject { |e| e=~ /\.(bat|cmd)$/ }
man = glob(%w{man/man[0-9]/*})
-libs = glob(%w{lib/**/*.rb lib/**/*.py})
+libs = glob(%w{lib/**/*.rb lib/**/*.py lib/puppet/util/command_line/*})
tests = glob(%w{test/**/*.rb})
def do_bins(bins, target, strip = 's?bin/')