summaryrefslogtreecommitdiffstats
path: root/tasks/rake
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2010-01-13 07:52:17 +1100
committerJames Turnbull <james@lovedthanlost.net>2010-01-13 07:52:17 +1100
commitf7e14356ad7781fafa52a459d3c24372fa6c0900 (patch)
tree7e0f8edd71cf46a417be8bd161eca7b27df5e6c2 /tasks/rake
parent49013f0bf857d89f2ee8754279fe6b2b0347779a (diff)
downloadpuppet-f7e14356ad7781fafa52a459d3c24372fa6c0900.tar.gz
puppet-f7e14356ad7781fafa52a459d3c24372fa6c0900.tar.xz
puppet-f7e14356ad7781fafa52a459d3c24372fa6c0900.zip
Updated rake task to fix gem build issue
Diffstat (limited to 'tasks/rake')
-rw-r--r--tasks/rake/gem.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/rake/gem.rake b/tasks/rake/gem.rake
index e37395231..ba9d8ab4d 100644
--- a/tasks/rake/gem.rake
+++ b/tasks/rake/gem.rake
@@ -25,7 +25,7 @@ spec = Gem::Specification.new do |spec|
spec.platform = Gem::Platform::RUBY
spec.name = 'puppet'
spec.files = GEM_FILES.to_a
- spec.executables = EXECUTABLES.gsub(/sbin|bin/, '').to_a
+ spec.executables = EXECUTABLES.gsub(/sbin\/|bin\//, '').to_a
spec.version = Puppet::PUPPETVERSION
spec.add_dependency('facter', '>= 1.5.1')
spec.summary = 'Puppet, an automated configuration management tool'