diff --git a/internal/plugin/plugin.go b/internal/plugin/plugin.go index 4ed36ef6..10b58983 100644 --- a/internal/plugin/plugin.go +++ b/internal/plugin/plugin.go @@ -125,7 +125,9 @@ func (p *Plugin) Exec() error { // nolint: funlen,cyclop if err != nil { return fmt.Errorf("get working directory, %w", err) } + fsys := os.DirFS(cwd) + if err = p.Config.HandleMount(fsys); err != nil { return fmt.Errorf("exec handle mount call, %w", err) }