mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
Add index paths in tar processing.
This commit is contained in:
parent
a5653c7192
commit
3b40850195
1 changed files with 4 additions and 0 deletions
|
@ -51,6 +51,10 @@ for (var key in tar) {
|
||||||
tar[key].map(prefixLocalLibraryPath).map(function (p) {
|
tar[key].map(prefixLocalLibraryPath).map(function (p) {
|
||||||
return p.replace(/\.js$/, '');
|
return p.replace(/\.js$/, '');
|
||||||
})
|
})
|
||||||
|
).concat(
|
||||||
|
tar[key].map(prefixLocalLibraryPath).map(function (p) {
|
||||||
|
return p.replace(/\.js$/, '') + '/index.js';
|
||||||
|
})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue