X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=gocheese.go;h=fa12d1826df911354147c04affae276fbcf19244;hb=eb97aece08643bf8df13d7be0904fc855a748d58;hp=905856df61fc53a15c7bb1993b2b988947909825;hpb=0d804c602fbc55f58d04fa9657950f3a6aac6d81;p=gocheese.git diff --git a/gocheese.go b/gocheese.go index 905856d..fa12d18 100644 --- a/gocheese.go +++ b/gocheese.go @@ -43,6 +43,7 @@ import ( ) const ( + Version = "2.4.1" HTMLBegin = ` @@ -93,12 +94,11 @@ var ( 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") - Version string = "UNKNOWN" killed bool pypiURLParsed *url.URL )