Hello, I encountered a problem today.
I use backticks to call some linux command and as well execute a script, but when I do that, the output is only visible when my process is completely done. Can I fix that ?
The part of my code:
if userAgreement
matchingSoftwaresArray.each_with_index do |software, index|
file = File.open("ISM.task", "w")
file << "require \"./#{ISM::Default::Path::SoftwaresDirectory + software.name + "/" + software.version + "/" + software.version + ".cr"}\"\n"
file << "target = Target.new\n"
file << "target.download\n"
file << "target.check\n"
file << "target.extract\n"
file << "target.patch\n"
file << "target.prepare\n"
file << "target.configure\n"
file << "target.build\n"
file << "target.install\n"
file.close
Ism.notifyOfDownload(software)
puts `crystal ISM.task`
end
end
I talk about the line when I do puts crystal ISM.task