Explorar el Código

Added proper information about the build directory.

fredck hace 11 años
padre
commit
8880b20fa9
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      dev/tasks/build/builder.js

+ 3 - 1
dev/tasks/build/builder.js

@@ -40,7 +40,7 @@ function Builder( target ) {
 	 * @property {Array}
 	 */
 	this.taskList = [
-		[ 'cleanUp', 'Cleaning the "' + target + '" directory...' ],
+		[ 'cleanUp', 'Cleaning the "' + this.target + '" directory...' ],
 		[ 'copyToTmp', 'Copying source files for manipulation...' ],
 		[ 'removeAmdNamespace', 'AMD cleanup...' ],
 		[ 'optimize', 'Creating the optimized code...' ],
@@ -66,6 +66,8 @@ Builder.prototype = {
 			return;
 		}
 
+		console.log( 'Building CKEditor into the "' + this.target + '" directory:')
+
 		runNext();
 
 		function runNext() {