fix: add full error handling after os.Stat
Signed-off-by: Tanguy ⧓ Herrmann <tanguy@dagger.io>
This commit is contained in:
parent
67bcb7ca20
commit
f18a2ce03a
@ -35,6 +35,8 @@ func (t clientFilesystemReadTask) PreRun(_ context.Context, pctx *plancontext.Co
|
|||||||
return fmt.Errorf("path %q is not a directory", path)
|
return fmt.Errorf("path %q is not a directory", path)
|
||||||
case pi.IsDir() && !isFS:
|
case pi.IsDir() && !isFS:
|
||||||
return fmt.Errorf("path %q cannot be a directory", path)
|
return fmt.Errorf("path %q cannot be a directory", path)
|
||||||
|
case err != nil:
|
||||||
|
return fmt.Errorf("path %q cannot be stat'd", path)
|
||||||
}
|
}
|
||||||
|
|
||||||
if plancontext.IsFSValue(v.Lookup("contents")) {
|
if plancontext.IsFSValue(v.Lookup("contents")) {
|
||||||
|
Reference in New Issue
Block a user