aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Gruntfile.js2
-rw-r--r--lib/grunt/utils.js6
2 files changed, 5 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index e420498a..be5b88a3 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -27,7 +27,7 @@ module.exports = function(grunt) {
parallel: {
travis: {
options: {
- stream: true,
+ stream: true
},
tasks: [
util.parallelTask('test:docs'),
diff --git a/lib/grunt/utils.js b/lib/grunt/utils.js
index 9d42ce3b..ef9ae96d 100644
--- a/lib/grunt/utils.js
+++ b/lib/grunt/utils.js
@@ -142,8 +142,10 @@ module.exports = {
'java ' +
this.java32flags() + ' ' +
'-Xmx2g ' +
- '-classpath ./components/closure-compiler/compiler.jar' + classPathSep +
- './components/ng-closure-runner/ngcompiler.jar ' +
+ '-cp components/closure-compiler/compiler.jar' + classPathSep +
+ 'components/ng-closure-runner/ngcompiler.jar ' +
+ // '-classpath ./components/closure-compiler/compiler.jar' + classPathSep +
+ // './components/ng-closure-runner/ngcompiler.jar ' +
'org.angularjs.closurerunner.NgClosureRunner ' +
'--compilation_level SIMPLE_OPTIMIZATIONS ' +
'--language_in ECMASCRIPT5_STRICT ' +