Working version of QEMU configuration

This commit is contained in:
Artur Gurgul 2025-08-11 17:36:55 +02:00
parent 49cc960703
commit 78d7233ff3
3 changed files with 138 additions and 2 deletions

View file

@ -23,7 +23,7 @@ module Downloader
puts "File does not exist, downloading..."
URI.open(uri) do |input|
File.open(path, 'wb') do |output|
IO.copy_stream(input, output)
IO.copy_stream(input, output)
end
end
end