aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-06-24 13:46:46 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-06-24 13:46:46 -0500
commitb21c24ad7a8b65cd388e697266dd98a9bafc4952 (patch)
tree670b9aab13a349b13c4a052f036f25027b15cf38
parentdca6d26833ddd9d9de658bef7274c8fa21014c44 (diff)
downloadbundler-b21c24ad7a8b65cd388e697266dd98a9bafc4952.tar.gz
[SpecSet] Don't mutate the skip list
This could cause definition to think bundler is being updated
-rw-r--r--lib/bundler/spec_set.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/spec_set.rb b/lib/bundler/spec_set.rb
index 3133ff26..bfc5a23b 100644
--- a/lib/bundler/spec_set.rb
+++ b/lib/bundler/spec_set.rb
@@ -18,7 +18,7 @@ module Bundler
handled = {}
deps = dependencies.dup
specs = []
- skip << "bundler"
+ skip += ["bundler"]
until deps.empty?
dep = deps.shift