diff options
author | Garret Kelly <gdk@google.com> | 2019-10-03 08:46:27 -0400 |
---|---|---|
committer | Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com> | 2019-10-03 16:53:45 +0200 |
commit | 674e81ae8700bdd00d3e5e47ff930d42d25bc68b (patch) | |
tree | 5e88e28df459e99dc77a4ab5845c8be12db38fa7 /commands | |
parent | 298092d516f623cc20051f506d460fb7625cdc84 (diff) | |
download | hugo-674e81ae8700bdd00d3e5e47ff930d42d25bc68b.tar.gz hugo-674e81ae8700bdd00d3e5e47ff930d42d25bc68b.zip |
deploy: Add ability to invalidate Google Cloud CDN
Diffstat (limited to 'commands')
-rw-r--r-- | commands/deploy.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/deploy.go b/commands/deploy.go index d4b04ab78..d74d93709 100644 --- a/commands/deploy.go +++ b/commands/deploy.go @@ -70,7 +70,7 @@ documentation. 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 listed in the deployment target") cc.cmd.Flags().Int("maxDeletes", 256, "maximum # of files to delete, or -1 to disable") return cc |