summaryrefslogtreecommitdiffstats
path: root/commands/deploy.go
diff options
context:
space:
mode:
authorRobert van Gent <rvangent@google.com>2019-05-31 09:55:48 -0700
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-05-31 22:08:12 +0200
commitb0f536fb276f63df0b0b8d92aeda80affb4b6a34 (patch)
tree616249222d6f07e56c7c71af6bce793d5a5939f0 /commands/deploy.go
parent1384d77a04d7027d719993c6f54f892b5e7974db (diff)
Drop dashes in http header matcher attributes; other changes from code review
Diffstat (limited to 'commands/deploy.go')
-rw-r--r--commands/deploy.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/deploy.go b/commands/deploy.go
index 6f8eac357..65cd9240f 100644
--- a/commands/deploy.go
+++ b/commands/deploy.go
@@ -68,7 +68,7 @@ func newDeployCmd() *deployCmd {
cc.cmd.Flags().Bool("confirm", false, "ask for confirmation before making changes to the target")
cc.cmd.Flags().Bool("dryRun", false, "dry run")
cc.cmd.Flags().Bool("force", false, "force upload of all files")
- cc.cmd.Flags().Bool("invalidateCDN", true, "invalidate the CDN cache via the CloudFrontDistributionID listed in the deployment target")
+ cc.cmd.Flags().Bool("invalidateCDN", true, "invalidate the CDN cache via the cloudFrontDistributionID listed in the deployment target")
cc.cmd.Flags().Int("maxDeletes", 256, "maximum # of files to delete, or -1 to disable")
return cc