Compare commits

...

1 Commits
main ... master

Author SHA1 Message Date
Admar Schoonen 9768a3ab89 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.
2018-06-22 20:56:04 +02:00
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