aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/gem_helper.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2011-08-01 17:02:34 -0700
committerAndre Arko <andre@arko.net>2011-08-01 17:31:47 -0700
commit2d585e6c1b75d4b0f95b37451caa4f65cc000a0a (patch)
tree11f4df512921cb3b0ac2a1df002ff22fe8fed0d6 /lib/bundler/gem_helper.rb
parent7c892426fa3f6455545a3f207110568322ba86d7 (diff)
downloadbundler-2d585e6c1b75d4b0f95b37451caa4f65cc000a0a.tar.gz
stop checking for Successfully in output, it's not always there
Diffstat (limited to 'lib/bundler/gem_helper.rb')
-rw-r--r--lib/bundler/gem_helper.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/bundler/gem_helper.rb b/lib/bundler/gem_helper.rb
index 474e8454..a9c6edb5 100644
--- a/lib/bundler/gem_helper.rb
+++ b/lib/bundler/gem_helper.rb
@@ -42,7 +42,6 @@ module Bundler
def build_gem
file_name = nil
sh("gem build '#{spec_path}'") { |out, code|
- raise out unless out[/Successfully/]
file_name = File.basename(built_gem_path)
FileUtils.mkdir_p(File.join(base, 'pkg'))
FileUtils.mv(built_gem_path, 'pkg')