We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dbc086 commit 58ad0d7Copy full SHA for 58ad0d7
tasks/package.js
@@ -22,8 +22,8 @@ module.exports = function(grunt) {
22
var pathInstall = pathPackage + '/';
23
if (pathVendor) {
24
// Make sure install path is relative to vendor location.
25
- var regex = new RegExp('^' + pathVendor + '/');
26
- pathInstall = pathInstall.replace(regex, '');
+ var regexVendor = new RegExp('^' + pathVendor + '/');
+ pathInstall = pathInstall.replace(regexVendor, '');
27
}
28
var regex = new RegExp('^' + pathBuild + '/');
29
for (var key in composer.extra['installer-paths']) {
0 commit comments