Skip to content
This repository has been archived by the owner on Aug 19, 2019. It is now read-only.

Commit

Permalink
Fixed incorrect path of msbuild. see:
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicklas Ronge committed Apr 19, 2018
1 parent c71ada4 commit 6360e80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/msbuild-finder.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var child = require ('child_process');
var msBuildFromWhere = function(pathRoot) {
var vsWherePath = path.join(pathRoot, 'Microsoft Visual Studio','Installer', 'vswhere.exe');
var whereProcess = child.spawnSync(vsWherePath,
['-latest', '-products', '*', 'requires', 'Microsoft.Component.MSBuild'],
['-latest', '-products', '*', '-requires', 'Microsoft.Component.MSBuild'],
{
cwd: process.cwd(),
env: process.env,
Expand Down

0 comments on commit 6360e80

Please sign in to comment.