Fixed output of nim version: should print file totals before scanning.

This commit is contained in:
Jonathan Bernard 2016-02-10 07:28:42 -06:00
parent 6cc4bf390f
commit e49bd4e9c9
4 changed files with 6 additions and 5 deletions

View File

@ -3,7 +3,7 @@ apply plugin: "application"
apply plugin: "maven"
group = "com.jdblabs"
version = "1.4.2"
version = "1.4.3"
mainClassName = "com.jdblabs.file.treediff.TreeDiff"
repositories {

View File

@ -8,7 +8,7 @@ import org.apache.commons.codec.digest.DigestUtils
public class TreeDiff {
public static final String VERSION = "1.4.2"
public static final String VERSION = "1.4.3"
private ObjectMapper objectMapper = new ObjectMapper()
private PrintStream stdout

View File

@ -24,7 +24,8 @@ proc newProgressWrapper*(outFile = stdout, verbosity = normal): ProgressWrapper
else: result = (impl: nil, verbosity: verbosity)
proc init(p: ProgressWrapper, root: string, fileCount: int): void =
if p.verbosity == normal: echo "-- ", root.expandFilename
if p.verbosity == normal:
echo "-- ", root.expandFilename, "\L ", fileCount, " files"
if p.verbosity > very_quiet: p.impl.setMax(fileCount)
proc update(p: ProgressWrapper, count: int, file: string): void =
@ -231,7 +232,7 @@ Options:
"""
let args = docopt(doc, version = "treediff v1.4.2")
let args = docopt(doc, version = "treediff v1.4.3")
var verbosity = normal
if args["--quiet"]: verbosity = quiet

View File

@ -1,5 +1,5 @@
# Package
version = "1.4.2"
version = "1.4.3"
author = "Jonathan Bernard (jdb@jdb-labs.com)"
description = "Utility to generate diffs of full directory trees."
license = "BSD"