Skip to content

Commit

Permalink
Merge pull request #1 from viatsyshyn/viatsyshyn-fix-4
Browse files Browse the repository at this point in the history
Fixed require issue for npm update
  • Loading branch information
viatsyshyn committed Oct 21, 2015
2 parents 4fd251c + e741960 commit e972385
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/crypt.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var path = require('path')
, fs = require('fs')
, kruptosUtilCrypt = require('../node_modules/kruptos/lib/kruptos-util-crypt');
, kruptosUtilCrypt = require('kruptos/lib/kruptos-util-crypt');

function isFileAndNotInModules(file) {
return file.indexOf('node_modules/') !== 0 && fs.lstatSync(file).isFile();
Expand Down Expand Up @@ -64,4 +64,4 @@ module.exports = function (grunt) {
});
});
});
};
};

0 comments on commit e972385

Please sign in to comment.