- fix LOGSTASH-1016 (bad variable name)

This commit is contained in:
Jordan Sissel 2013-04-21 22:58:44 -07:00
parent 56a9331c61
commit f7b6e460e5

View file

@ -27,7 +27,7 @@ class << java.lang.System
# open both files in 'binary' mode (sets encoding to BINARY aka
# ASCII-8BIT).
input = File.new(path, "rb")
input = File.new(value, "rb")
output = File.new(extracted_path, "wb")
output.write(chunk) while chunk = input.read(16384)
input.close