summaryrefslogtreecommitdiffstats
path: root/commands/deploy.go
diff options
context:
space:
mode:
authorHyeonGyu Lee <vazrupe@naver.com>2019-08-15 16:33:47 +0900
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-08-15 09:33:47 +0200
commitea9261e856c13c1d4ae05fcca08766d410b4b65c (patch)
tree70c68f81d682dff217848bee8b215369ad4a94ea /commands/deploy.go
parent37f592980315de1890363d4234274a16567a6da0 (diff)
commands: Make sure the hugo field is always initialized before it's used
Wrap the field to make it accessible after initialization. Fixes #6193
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 c3999427e..d4b04ab78 100644
--- a/commands/deploy.go
+++ b/commands/deploy.go
@@ -58,7 +58,7 @@ documentation.
if err != nil {
return err
}
- deployer, err := deploy.New(comm.Cfg, comm.hugo.PathSpec.PublishFs)
+ deployer, err := deploy.New(comm.Cfg, comm.hugo().PathSpec.PublishFs)
if err != nil {
return err
}