summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwycats <wycats@gmail.com>2010-06-29 15:29:56 -0700
committerwycats <wycats@gmail.com>2010-06-29 15:29:56 -0700
commit268ea0600de807601af17ae4aef5af3da9c0b5c5 (patch)
treea45645f017446760cc2dea554ed210b364c07100
parentf1d789b41bdd5c64b53825382648ff887580ab99 (diff)
downloadbundler-268ea0600de807601af17ae4aef5af3da9c0b5c5.tar.gz
Environment variables are frozen
-rw-r--r--spec/support/rubygems_hax/rubygems_plugin.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/rubygems_hax/rubygems_plugin.rb b/spec/support/rubygems_hax/rubygems_plugin.rb
index f70674497b..35a375a5d9 100644
--- a/spec/support/rubygems_hax/rubygems_plugin.rb
+++ b/spec/support/rubygems_hax/rubygems_plugin.rb
@@ -4,6 +4,6 @@ end
if ENV['BUNDLER_SPEC_VERSION']
module Bundler
- VERSION = ENV['BUNDLER_SPEC_VERSION']
+ VERSION = ENV['BUNDLER_SPEC_VERSION'].dup
end
end \ No newline at end of file