Skip to content
This repository has been archived by the owner on Mar 14, 2022. It is now read-only.

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
notlee committed Jul 7, 2021
1 parent 066c43d commit 0d5ffa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tasks/pa11y.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ module.exports = function (cfg) {
if (config.ignoreBower) {
return `Skipping pa11y tests. They are not supported in this version of origami-build-tools when the \`--ignore-bower\` flag is set.`;
}
const exists = await fileExists(path.join(config.cwd, '/demos/src/pa11y.mustache'))
const exists = await fileExists(path.join(config.cwd, '/demos/src/pa11y.mustache'));
if (!exists) {
return `No Pa11y demo found. To run Pa11y against this project, create a file at ${path.join(config.cwd, '/demos/local/pa11y.html')}`;
}
Expand Down

0 comments on commit 0d5ffa1

Please sign in to comment.