Skip to content

Commit

Permalink
add period to error message
Browse files Browse the repository at this point in the history
  • Loading branch information
kcboyle authored Mar 13, 2020
1 parent e1b89df commit b4c41d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/download_product.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ func (c *DownloadProduct) Execute(args []string) error {
if c.Options.StemcellHeavy {
isHeavy = "heavy "
}
return fmt.Errorf("could not download stemcell: %s\nNo %sstemcell identified for IaaS \"%s\" on Pivotal Network. Correct the `stemcell-iaas` option to match the IaaS portion of the stemcell filename, or remove the option", err, isHeavy, c.Options.StemcellIaas)
return fmt.Errorf("could not download stemcell: %s\nNo %sstemcell identified for IaaS \"%s\" on Pivotal Network. Correct the `stemcell-iaas` option to match the IaaS portion of the stemcell filename, or remove the option.", err, isHeavy, c.Options.StemcellIaas)
}

err = c.writeDownloadProductOutput(productFileName, productVersion, stemcellFileName, stemcell.Version())
Expand Down

0 comments on commit b4c41d0

Please sign in to comment.