Skip to content

Commit 7b13326

Browse files
committed
fix: ensure forms workaround globbing works in windows
1 parent 4fc0485 commit 7b13326

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/build/verification.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,13 @@ const formDetectionRegex = /<form[^>]*?\s(netlify|data-netlify)[=>\s]/
9494

9595
export async function verifyNetlifyFormsWorkaround(ctx: PluginContext) {
9696
const srcDir = ctx.resolveFromSiteDir('public')
97-
const paths = await glob(join(srcDir, '**/*.html'))
97+
const paths = await glob('**/*.html', {
98+
cwd: srcDir,
99+
dot: true,
100+
})
98101
try {
99102
for (const path of paths) {
100-
const html = await readFile(path, 'utf-8')
103+
const html = await readFile(join(srcDir, path), 'utf-8')
101104
if (formDetectionRegex.test(html)) {
102105
verifications.add('netlifyFormsWorkaround')
103106
return

0 commit comments

Comments
 (0)