Fixed output of nim version: should print file totals before scanning.
This commit is contained in:
parent
6cc4bf390f
commit
e49bd4e9c9
@ -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 {
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user