summaryrefslogtreecommitdiff
path: root/spec/support
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-12-13 17:10:13 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-12-13 18:31:03 +0100
commit831093c178dc14d15123bc1c8a5e15cc1e0ff70b (patch)
tree60ec8780bb714246949b235e621139c586752dd3 /spec/support
parent3bd06e7a8bb427945b9a0c7c108c02bd96d7c1c9 (diff)
downloadbundler-831093c178dc14d15123bc1c8a5e15cc1e0ff70b.tar.gz
Revert "Write & read dummy gems binarily"cleanup_windows_ci_logs
This reverts commit f11c4757a17bea029e1a83ad67c425ccf16133ff.
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/builders.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/builders.rb b/spec/support/builders.rb
index 4a8d699740..76c9fff463 100644
--- a/spec/support/builders.rb
+++ b/spec/support/builders.rb
@@ -632,7 +632,7 @@ module Spec
@files.each do |file, source|
file = Pathname.new(path).join(file)
FileUtils.mkdir_p(file.dirname)
- File.open(file, "wb") {|f| f.puts source }
+ File.open(file, "w") {|f| f.puts source }
end
@spec.files = @files.keys
path