diff options
Diffstat (limited to 'internal/resource/file/file.go')
| -rw-r--r-- | internal/resource/file/file.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/resource/file/file.go b/internal/resource/file/file.go index 9d8a0d9..88b0bca 100644 --- a/internal/resource/file/file.go +++ b/internal/resource/file/file.go @@ -231,6 +231,6 @@ func Present(path string, opts ...opt.Option) resource.Resource { } func Absent(path string, opts ...opt.Option) resource.Resource { - opts = append(opts, opt.IsAbsent()) + opts = append(opts, opt.IsAbsent) return Present(path, opts...) } |
