소스 검색

'Compile Time' only in verbose; finished_callback checked for null

Herbert Vojčík 11 년 전
부모
커밋
459c39141e
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. 4 3
      cli/support/amberc.js

+ 4 - 3
cli/support/amberc.js

@@ -143,13 +143,14 @@ AmberC.prototype.main = function(configuration, finished_callback) {
 	.then(verify)
 	.then(compose_js_files)
 	.then(function () {
-		console.log = console.ambercLog;
 		console.timeEnd('Compile Time');
 	}, function(error) {
-		console.log = console.ambercLog;
 		console.error(error);
 	})
-	.then(finished_callback);
+	.then(function () {
+        console.log = console.ambercLog;
+        finished_callback && finished_callback();
+    });
 };