Added printing empty lines after compilation

Adding printing an empty line after a compile iteration has finished
makes it easier to parse the output and look for errors.
This commit is contained in:
Admar Schoonen 2018-06-22 20:56:04 +02:00
parent 48de8f578f
commit 9768a3ab89
1 changed files with 2 additions and 0 deletions

View File

@ -163,6 +163,7 @@ end
# do an initial run.
files = `rubber-info --deps #{infile}`.chomp.split
compile(infile, mode)
puts ""
# Spawn a viewer based on the mode.
viewer_pid = fork
@ -196,6 +197,7 @@ dirs.each do |dir|
puts "I: file #{ev.name} modified, compiling #{infile}..."
compile(infile, mode)
reload(infile, mode)
puts ""
end
end