Skip to content
This repository has been archived by the owner on May 22, 2021. It is now read-only.

Commit

Permalink
Fix default from value docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilder committed Aug 14, 2014
1 parent 64a065f commit 1348957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func main() {
flag.StringVar(&input, "i", "", "Read from a tar archive file, instead of STDIN")
flag.StringVar(&output, "o", "", "Write to a file, instead of STDOUT")
flag.StringVar(&tag, "t", "", "Repository name and tag for new image")
flag.StringVar(&from, "from", "", "Squash from layer ID (default is root)")
flag.StringVar(&from, "from", "", "Squash from layer ID (default: first FROM layer)")
flag.BoolVar(&keepTemp, "keepTemp", false, "Keep temp dir when done. (Useful for debugging)")
flag.BoolVar(&verbose, "verbose", false, "Enable verbose logging")
flag.BoolVar(&version, "v", false, "Print version information and quit")
Expand Down

0 comments on commit 1348957

Please sign in to comment.