From 0b1fbe5b5e5a85588eca225b84eacfb26c234c7b Mon Sep 17 00:00:00 2001 From: mpl Date: Thu, 7 Jan 2016 00:15:47 +0100 Subject: [PATCH] dock.go: fix flag doc typo for version Change-Id: Ic390de75f579892855688a832008678c607084b7 --- misc/docker/dock.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/docker/dock.go b/misc/docker/dock.go index 067f01ca7..0dd1ab0a2 100644 --- a/misc/docker/dock.go +++ b/misc/docker/dock.go @@ -45,7 +45,7 @@ import ( var ( flagRev = flag.String("rev", "", "Camlistore revision to build (tag or commit hash). For development purposes, you can instead specify the path to a local Camlistore source tree from which to build, with the form \"WIP:/path/to/dir\".") - flagVersion = flag.String("tarball_version", "", "For --build_image mode, the version number (e.g. 0.9) used for the release tarball name. It also defines the destination directory where the release tarball is uploaded.") + flagVersion = flag.String("tarball_version", "", "For --build_release mode, the version number (e.g. 0.9) used for the release tarball name. It also defines the destination directory where the release tarball is uploaded.") buildOS = flag.String("os", runtime.GOOS, "Operating system to build for. Requires --build_release.") doImage = flag.Bool("build_image", true, "build the Camlistore server as a docker image. Conflicts with --build_release.")