Skip to content

Commit

Permalink
Chore: Fix site generation script for releases (#11766)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyavolodin committed May 25, 2019
1 parent cf9cce8 commit f116208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.js
Expand Up @@ -186,7 +186,7 @@ function generateRuleIndexPage() {
.forEach(pair => {
const filename = pair[0];
const basename = pair[1];
const rule = require(filename);
const rule = require(path.resolve(filename));

if (rule.meta.deprecated) {
categoriesData.deprecated.rules.push({
Expand Down

0 comments on commit f116208

Please sign in to comment.