diff --git a/bin/rhtmlc.js b/bin/rhtmlc.js
index e47b8b33b..4f8612428 100644
--- a/bin/rhtmlc.js
+++ b/bin/rhtmlc.js
@@ -29,6 +29,8 @@ function compile(path) {
return;
}
+ found[path] = true;
+
var deferred = raptorPromises.defer();
var outPath = path + '.js';
@@ -72,7 +74,6 @@ globPatterns.forEach(function(globPattern) {
promises.push(deferred.promise);
});
-console.log('Promises: ', promises.length);
raptorPromises.all(promises).then(
function() {
console.log('Done!');