Advertisement
Guest User

grunt-phonegap grunt phonegap:build error solved

a guest
Jan 18th, 2016
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function () {
  2.     var cloneRoot, ncp, path;
  3.  
  4.     path = require('path');
  5.  
  6.     ncp = require('ncp').ncp;
  7.     ncp.limit = 512;
  8.  
  9.     module.exports = cloneRoot = function (grunt) {
  10.         var helpers;
  11.         helpers = require('../../helpers')(grunt);
  12.         return {
  13.             run: function (fn) {
  14.                 var phonegapPath, rootPath;
  15.                 grunt.log.writeln('Cloning a porra do root directory');
  16.                 rootPath = helpers.config('root');
  17.                 phonegapPath = helpers.config('path');
  18.                 return ncp(rootPath, path.join(phonegapPath, 'www'), {
  19.                     stopOnError: true
  20.                 }, (function (_this) {
  21.                     return function (err) {
  22.                         if (err) {
  23.                             grunt.warn(err);
  24.                         }
  25.                         if (fn) {
  26.                             return fn(err);
  27.                         }
  28.                     };
  29.                 })(this));
  30.             }
  31.         };
  32.     };
  33.  
  34. }).call(this);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement