Skip to content

Commit

Permalink
fixed non-watcher command line runner
Browse files Browse the repository at this point in the history
  • Loading branch information
damonsmith committed Jan 13, 2015
1 parent b016bbb commit 74df09a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ public CommandLineRunner(String [] args, PrintStream out) throws Exception {
watcher.processEvents();

}
else {
graphUpdated();
}
}
}

Expand Down Expand Up @@ -109,7 +112,7 @@ public void graphUpdated() {
try {
long startTime = System.currentTimeMillis();
generate();
System.out.println("Generated new bundle in " + (System.currentTimeMillis() - startTime));
System.out.println("Generated new bundle in " + (System.currentTimeMillis() - startTime) + "ms");
System.out.println(
bundler.getBundleSize() + " bytes, " +
bundler.getLineNumber() + " lines, " +
Expand Down

0 comments on commit 74df09a

Please sign in to comment.