From 9e955c97fddccc1b77dfee95fd83800e2a709d51 Mon Sep 17 00:00:00 2001 From: Bastian de Byl Date: Wed, 10 Aug 2022 10:25:51 -0400 Subject: [PATCH] 206-doublestar-mount fixed config.go linting again --- internal/plugin/plugin.go | 2 ++ 1 file changed, 2 insertions(+) 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) }