Explorar el Código

devkit: pass error from amdconfig grunt task

Herbert Vojčík hace 8 años
padre
commit
04210e52f6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      external/amber-dev/tasks/grunt-amdconfig.js

+ 1 - 1
external/amber-dev/tasks/grunt-amdconfig.js

@@ -28,7 +28,7 @@ module.exports = function (grunt) {
         }
 
         require('..').configBuilder.writeConfig(options.root_dir, this.files[0].dest, function (err) {
-            done(!err);
+            done(err || true);
         })
     });
 };