Fix wording for dry-run flag in useage message for garbage collector.

Signed-off-by: Serge Dubrouski <sergeyfd@gmail.com>
This commit is contained in:
Serge Dubrouski 2016-04-26 19:44:23 -06:00 committed by Richard Scothern
parent ed02e88075
commit 0a1fcf9712
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ func markAndSweep(ctx context.Context, storageDriver driver.StorageDriver, regis
}
func init() {
GCCmd.Flags().BoolVarP(&dryRun, "dry-run", "d", false, "do everything expect remove the blobs")
GCCmd.Flags().BoolVarP(&dryRun, "dry-run", "d", false, "do everything except remove the blobs")
}
var dryRun bool