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

Commit

Permalink
scripts: Remove debug log in makeRelease.js
Browse files Browse the repository at this point in the history
  • Loading branch information
elisee committed Nov 28, 2015
1 parent f73ae69 commit e695b1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/makeRelease.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function shouldIgnore(file) {
if (file[0] === "." || file.indexOf("/.") !== -1) return true;
if (_.endsWith(file, ".orig")) return true;

if (templateRegex.test(file)) { console.log(file); return false; }
if (templateRegex.test(file)) return false;
if (_.endsWith(file, "gulpfile.js") || _.endsWith(file, "tsconfig.json")) return true;
if (_.endsWith(file, "launcher.cmd")) return true;
if (_.endsWith(file, ".jade")) return true;
Expand Down

0 comments on commit e695b1f

Please sign in to comment.