X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fde%2Ftodesbaum%2Fjsite%2Fmain%2FCLI.java;h=176507434f952689b8c160bd236a49fb84186c93;hb=9587b6c270d65f010db0656ad322121d39c7d997;hp=9f0b2db3cb35226f24ecfdc056b37af2461717a6;hpb=a0cf8264e9d97aeaefa3f6322d32f9b4b87f7559;p=jSite.git diff --git a/src/main/java/de/todesbaum/jsite/main/CLI.java b/src/main/java/de/todesbaum/jsite/main/CLI.java index 9f0b2db..1765074 100644 --- a/src/main/java/de/todesbaum/jsite/main/CLI.java +++ b/src/main/java/de/todesbaum/jsite/main/CLI.java @@ -1,5 +1,5 @@ /* - * jSite - CLI.java - Copyright © 2006–2012 David Roden + * jSite - CLI.java - Copyright © 2006–2014 David Roden * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -104,6 +104,7 @@ public class CLI implements InsertListener { freenetInterface.setNode(node); projectInserter.setFreenetInterface(freenetInterface); + projectInserter.setPriority(configuration.getPriority()); Project currentProject = null; for (String argument : args) { @@ -271,6 +272,9 @@ public class CLI implements InsertListener { */ @Override public void projectInsertProgress(Project project, int succeeded, int failed, int fatal, int total, boolean finalized) { + if (total == 0) { + return; + } outputWriter.println("Progress: " + succeeded + " done, " + failed + " failed, " + fatal + " fatal, " + total + " total" + (finalized ? " (finalized)" : "") + ", " + ((succeeded + failed + fatal) * 100 / total) + "%"); }