@makano/rew 1.2.63 → 1.2.64
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/rew/cli/utils.js +3 -3
- package/package.json +1 -1
package/lib/rew/cli/utils.js
CHANGED
@@ -263,12 +263,12 @@ module.exports = {
|
|
263
263
|
}
|
264
264
|
}
|
265
265
|
}
|
266
|
-
if (c.install.file) {
|
267
|
-
this.runFileWithArgv(path.join(installPath, c.exec[c.install.file] || c.install.file), {}, []);
|
268
|
-
}
|
269
266
|
if (c.install.requirements) {
|
270
267
|
this.installReq(c, opts);
|
271
268
|
}
|
269
|
+
if (c.install.file) {
|
270
|
+
this.runFileWithArgv(path.join(installPath, c.exec[c.install.file] || c.install.file), {}, [installPath]);
|
271
|
+
}
|
272
272
|
if (c.install.exec) {
|
273
273
|
// this.installReq(c);
|
274
274
|
if(conf({}).create('').get('executables') == false){
|