Skip to content

Commit

Permalink
Fix logs
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicataldo committed Apr 28, 2020
1 parent bddcb80 commit ba110b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile.js
Original file line number Diff line number Diff line change
Expand Up @@ -754,10 +754,10 @@ target.gensite = function(prereleaseVersion) {
cp("-rf", `${TEMP_DIR}*`, outputDir);

// 11. Generate rule listing page
echo("> Generating the rule listing (Step 11)");

if (!prereleaseVersion) {
echo("> Skipping updating rules listing page because this is a prerelease.");
if (prereleaseVersion) {
echo("> Skipping updating rules listing because this is a prerelease (Step 11)");
} else {
echo("> Generating the rule listing (Step 11)");
generateRuleIndexPage();
}

Expand Down

0 comments on commit ba110b1

Please sign in to comment.