VERSION | 2 +- gocheese.go | 2 +- install.texi | 2 +- integrity.go | 2 +- diff --git a/VERSION b/VERSION index 65a6b2857a1efe51988d7f35abc1ba3576b6f3346604825551c23f922fbc2a41..4134a4655c8a4fc9baa45847da4ce422c187ccca44b7b3b718a831b409f586ba 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.3.0 +2.4.0 diff --git a/gocheese.go b/gocheese.go index 4d85f36bed544aa39279a55b6150ec13bf5fac653eb84e304b3c8225c2fd5768..3b7cf46604ad56e8376ee0b763cd3553a3ea57e5b988dee8e62d66d2eb984b99 100644 --- a/gocheese.go +++ b/gocheese.go @@ -93,7 +93,7 @@ gpgUpdateURLPath = flag.String("gpgupdate", "/gpgupdate/", "GPG forceful refreshing URL path") pypiURL = flag.String("pypi", "https://pypi.org/simple/", "Upstream PyPI URL") passwdPath = flag.String("passwd", "passwd", "Path to file with authenticators") passwdCheck = flag.Bool("passwd-check", false, "Test the -passwd file for syntax errors and exit") - fsck = flag.Bool("fsck", false, "Check integrity of all packages") + fsck = flag.Bool("fsck", false, "Check integrity of all packages (errors are in stderr)") maxClients = flag.Int("maxclients", 128, "Maximal amount of simultaneous clients") version = flag.Bool("version", false, "Print version information") warranty = flag.Bool("warranty", false, "Print warranty information") diff --git a/install.texi b/install.texi index 6cfb9d14df7695f862b111c6b964eb66aff6f663db3c5738f91fe92f819870fc..fc96cfbccb77ec426f9d1427073f674b1169e137a39f9c92b6ce9e9f0475b53f 100644 --- a/install.texi +++ b/install.texi @@ -1,7 +1,7 @@ @node Install @unnumbered Install -@set VERSION 2.3.0 +@set VERSION 2.4.0 Preferable way is to download tarball with the signature from website and, for example, run tests with benchmarks: diff --git a/integrity.go b/integrity.go index f1e3b9f35f1054eb62fd1fc90f8c83421b5b011d30d4fde3d5e4b2785de7c0d8..e56503a756cb06a1bbe7a959791db8e6a0541ee5323407de7a6f58271b6a17c9 100644 --- a/integrity.go +++ b/integrity.go @@ -64,7 +64,7 @@ if bytes.Compare(hasher.Sum(digest[:0]), data) == 0 { fmt.Println(pkgName, "GOOD") } else { isGood = false - fmt.Println(pkgName, "BAD") + fmt.Fprintln(os.Stderr, pkgName, "BAD") } hasher.Reset() }