summaryrefslogtreecommitdiff
path: root/lib/bundler/cli/update.rb
diff options
context:
space:
mode:
authorSmit Shah <who828@gmail.com>2014-01-06 19:55:33 +0530
committerSmit Shah <who828@gmail.com>2014-01-08 11:00:30 +0530
commitc637ee6d00575e07d8a25b123305a4a4b36e8c35 (patch)
tree217b3e93b0c36d2b8a96df023429dccda273572e /lib/bundler/cli/update.rb
parent0c9dee3f9d441619e9f17debb7f957e5cf6c114d (diff)
downloadbundler-c637ee6d00575e07d8a25b123305a4a4b36e8c35.tar.gz
Fixed failing specs on travis
Diffstat (limited to 'lib/bundler/cli/update.rb')
-rw-r--r--lib/bundler/cli/update.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/cli/update.rb b/lib/bundler/cli/update.rb
index 22816e0568..e1e98946b1 100644
--- a/lib/bundler/cli/update.rb
+++ b/lib/bundler/cli/update.rb
@@ -46,7 +46,7 @@ module Bundler
Bundler.load.cache if Bundler.root.join("vendor/cache").exist?
if Bundler.settings[:clean] && Bundler.settings[:path]
- require "bundler/cli/clean"
+ require_relative "clean"
Bundler::CLI::Clean.new(options).run
end
@@ -58,7 +58,7 @@ module Bundler
def without_groups_messages
if Bundler.settings.without.any?
- require "bundler/cli/common"
+ require_relative "common"
Bundler.ui.confirm Bundler::CLI::Common.without_groups_message
end
end