Просмотр исходного кода

amberc.js: remove debug output

Manfred Kroehnert 11 лет назад
Родитель
Сommit
368ced8e34
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      bin/amberc.js

+ 1 - 1
bin/amberc.js

@@ -679,7 +679,7 @@ AmberC.prototype.compose_js_files = function() {
 	program_files.forEach(function(file) {
 		if(path.existsSync(file)) {
 			console.log('Adding : ' + file);
-			console.log(fileStream.write(fs.readFileSync(file)));
+			fileStream.write(fs.readFileSync(file));
 		} else {
 			fileStream.end();
 			throw(new Error('Can not find file ' + file));