deploy: Default --target to the first deployment target
authorRobert van Gent <rvangent@google.com>
Fri, 31 May 2019 17:10:38 +0000 (10:10 -0700)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 7 Jun 2019 22:41:59 +0000 (00:41 +0200)
commands/deploy.go
deploy/deploy.go
docs/content/en/hosting-and-deployment/hugo-deploy.md

index f9f369f4d4b233ea7bdff60b064ccc2bdf14f8c0..c3999427e706e00595864b690f5b7e002fc066c2 100644 (file)
@@ -66,7 +66,7 @@ documentation.
                },
        })
 
-       cc.cmd.Flags().String("target", "default", "target deployment from deployments section in config file")
+       cc.cmd.Flags().String("target", "", "target deployment from deployments section in config file; defaults to the first one")
        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")
index e83410618ac47e074320d5f734763b7d4d9d859f..0512e352e95bbc03cb00f8ed52807f3cd89f55c0 100644 (file)
@@ -77,15 +77,24 @@ func New(cfg config.Provider, localFs afero.Fs) (*Deployer, error) {
                return nil, err
        }
 
+       if len(dcfg.Targets) == 0 {
+               return nil, errors.New("no deployment targets found")
+       }
+
        // Find the target to deploy to.
        var tgt *target
-       for _, t := range dcfg.Targets {
-               if t.Name == targetName {
-                       tgt = t
+       if targetName == "" {
+               // Default to the first target.
+               tgt = dcfg.Targets[0]
+       } else {
+               for _, t := range dcfg.Targets {
+                       if t.Name == targetName {
+                               tgt = t
+                       }
+               }
+               if tgt == nil {
+                       return nil, fmt.Errorf("deployment target %q not found", targetName)
                }
-       }
-       if tgt == nil {
-               return nil, fmt.Errorf("deployment target %q not found", targetName)
        }
        return &Deployer{
                localFs:       localFs,
@@ -105,6 +114,7 @@ func (d *Deployer) openBucket(ctx context.Context) (*blob.Bucket, error) {
        if d.bucket != nil {
                return d.bucket, nil
        }
+       jww.FEEDBACK.Printf("Deploying to target %q (%s)\n", d.target.Name, d.target.URL)
        return blob.OpenBucket(ctx, d.target.URL)
 }
 
index fa578a604115a950eaa3be8033482e52b17d63e1..f8614b953006ae7a86fe76b75cc5ae3560a3f2f7 100644 (file)
@@ -100,7 +100,7 @@ gzip = true
 
 To deploy to a target:
 ```
-hugo deploy --target=<target name>
+hugo deploy [--target=<target name>, defaults to first target]
 ```
 
 Hugo will identify and apply any local changes that need to be reflected to the