modules/client: Vendor config directory if present

Fixes #9751
This commit is contained in:
Joe Mooring 2022-04-05 10:36:08 -07:00 committed by Bjørn Erik Pedersen
parent e58a540895
commit a8c221d33b

View file

@ -282,6 +282,15 @@ func (c *Client) Vendor() error {
}
}
// Include the config directory if present.
configDir := filepath.Join(dir, "config")
_, err = c.fs.Stat(configDir)
if err == nil {
if err := hugio.CopyDir(c.fs, configDir, filepath.Join(vendorDir, t.Path(), "config"), nil); err != nil {
return errors.Wrap(err, "failed to copy config dir to vendor dir")
}
}
// Also include any theme.toml or config.* files in the root.
configFiles, _ := afero.Glob(c.fs, filepath.Join(dir, "config.*"))
configFiles = append(configFiles, filepath.Join(dir, "theme.toml"))