We need to use the State() function, rather than Result().ToState()

Signed-off-by: Joel Longtine <joel@dagger.io>
This commit is contained in:
Joel Longtine
2022-01-03 14:34:49 -07:00
parent ee56cda904
commit 8b4d02540f
5 changed files with 5 additions and 5 deletions

View File

@@ -27,7 +27,7 @@ func (c outputDirectoryTask) Run(ctx context.Context, pctx *plancontext.Context,
return nil, err
}
st, err := contents.Result().ToState()
st, err := contents.State()
if err != nil {
return nil, err
}