We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31b363a commit b36d5acCopy full SHA for b36d5ac
src/lib/screenshot.ts
@@ -187,7 +187,7 @@ export async function uploadScreenshots(ctx: Context): Promise<void> {
187
const stat = fs.statSync(filePath);
188
const relativeFilePath = path.join(relativePath, file);
189
190
- if (if (stat.isDirectory() && ctx.options.ignorePattern.includes(relativeFilePath))) {
+ if (stat.isDirectory() && ctx.options.ignorePattern.includes(relativeFilePath)) {
191
ctx.log.debug(`Ignoring Directory ${relativeFilePath}`)
192
continue; // Skip this path
193
}
0 commit comments