From 9768a3ab89f531a1459bbfcdab00bc59f42327d5 Mon Sep 17 00:00:00 2001 From: Admar Schoonen Date: Fri, 22 Jun 2018 20:56:04 +0200 Subject: [PATCH] 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. --- rubberin | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rubberin b/rubberin index 292ec0a..d52632e 100755 --- a/rubberin +++ b/rubberin @@ -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