summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2014-04-13 15:10:22 -0700
committerAndre Arko <andre@arko.net>2014-04-13 15:11:11 -0700
commitb7a6f3c8dde4abc099f82446ec8b89b28cf2f0d3 (patch)
treee7a532c38debf7d4da348fe666d9fd8a4bfb4b53
parent0efe0215fd025d1bffe681512f757953108c6f30 (diff)
downloadbundler-b7a6f3c8dde4abc099f82446ec8b89b28cf2f0d3.tar.gz
don't try to lock while frozen!
-rw-r--r--lib/bundler/installer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index 7b317a0aad..fe03b61508 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -91,7 +91,7 @@ module Bundler
install_sequentially options[:standalone]
end
- lock
+ lock unless Bundler.settings[:frozen]
generate_standalone(options[:standalone]) if options[:standalone]
end