diff --git a/index.js b/index.js
index a3fb81c..e074d5f 100644
--- a/index.js
+++ b/index.js
@@ -8,6 +8,8 @@ var fs = require('fs'),
 var DIRECTIVE_REGEX = /^[\/\s#]*?=\s*?((?:require|include)(?:_tree|_directory)?)\s+(.*$)/mg; //Note to Wiledal: Allowed asterisks, single quotes, and double quotes
 // Note to wiledal: I replaced the hidden file regex just with a simple check if the first character in the file name is a period. Do you know of use cases where you would want it to be more complicated than that?
 
+console.info("Another change...")
+
 var requiredFiles = {},
     extensions = [];
 
@@ -181,4 +183,4 @@ function difference(arr1, arr2) {
         }
     }
     return arr1;
-}
\ No newline at end of file
+}