Skip to content

Commit c3c0ec9

Browse files
committed
Fix npm install -wip
1 parent 544d72f commit c3c0ec9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/plugins-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export class PluginsService implements IPluginsService {
101101
}
102102

103103
public ensureAllDependenciesAreInstalled(): IFuture<void> {
104-
return this.$childProcess.exec("npm install");
104+
return this.$childProcess.exec("npm install ", { cwd: this.$projectData.projectDir });
105105
}
106106

107107
public getAllInstalledPlugins(): IFuture<IPluginData[]> {

0 commit comments

Comments
 (0)