Skip to content

Commit

Permalink
[jake] fix forgot php/libs/*.php
Browse files Browse the repository at this point in the history
  • Loading branch information
nao-pon committed Apr 11, 2016
1 parent 3ce5996 commit f1c93d9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Jakefile.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ var dirmode = 0755,
path.join(src, 'php', 'elFinderSessionInterface.php')
]
.concat(grep(path.join(src, 'php'), '\\.class\.php$'))
.concat(grep(path.join(src, 'php'), 'Netmount\.php$')),
.concat(grep(path.join(src, 'php'), 'Netmount\.php$'))
.concat(grep(path.join(src, 'php', 'libs'), '\.php$')),
'misc':
[
path.join(src, 'js', 'proxy', 'elFinderSupportVer1.js'),
Expand Down Expand Up @@ -136,7 +137,7 @@ desc('pre build task');
task('prebuild', function(){
console.log('build dir: ' + path.resolve());
console.log('src dir: ' + src);
var dir = ['css', 'js', 'img', 'sounds', path.join('js', 'i18n'), path.join('js', 'extras'), path.join('js', 'proxy'), 'php', 'files'];
var dir = ['css', 'js', 'img', 'sounds', path.join('js', 'i18n'), path.join('js', 'extras'), path.join('js', 'proxy'), 'php', path.join('php', 'libs'), 'files'];
if (plugins.length) {
dir.push(path.join('php', 'plugins'));
for (var i in plugins) {
Expand Down

0 comments on commit f1c93d9

Please sign in to comment.