Fix regression in stagingContext

This commit is contained in:
Tom 2023-05-30 11:25:01 +02:00
parent 3a893bbfb6
commit fcdb3a1d6a
14 changed files with 78 additions and 70 deletions

View file

@ -17,6 +17,6 @@ func (tpl *Templating) CustomAssetPath(name string) string {
func (tpl *Templating) BackupName() string { return "custom" }
func (tpl *Templating) Backup(context component.StagingContext) error {
func (tpl *Templating) Backup(context *component.StagingContext) error {
return context.CopyDirectory("", tpl.CustomAssetsPath())
}