- fix variable scoping

This commit is contained in:
Jordan Sissel 2013-04-23 14:48:10 -07:00
parent c49a3e50dc
commit f89365ef91

View file

@ -29,7 +29,9 @@ class << java.lang.System
# ASCII-8BIT).
input = File.new(value, "rb")
output = File.new(extracted_path, "wb")
output.write(chunk) while chunk = input.read(16384)
while chunk = input.read(16384)
output.write(chunk)
end
input.close
output.close