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 ee9cbdd commit 6c2e374Copy full SHA for 6c2e374
1 file changed
lib/find-visualstudio.js
@@ -30,7 +30,7 @@ class VisualStudioFinder {
30
this.configVersionYear = null
31
this.configPath = null
32
if (this.configMsvsVersion) {
33
- this.addLog('msvs_version was set from command line or npm config')
+ this.addLog(`--msvs_version=${this.configMsvsVersion} was set on the command line`)
34
if (this.configMsvsVersion.match(/^\d{4}$/)) {
35
this.configVersionYear = parseInt(this.configMsvsVersion, 10)
36
this.addLog(
@@ -41,7 +41,7 @@ class VisualStudioFinder {
41
`- looking for Visual Studio installed in "${this.configPath}"`)
42
}
43
} else {
44
- this.addLog('msvs_version not set from command line or npm config')
+ this.addLog('--msvs_version was not set on the command line')
45
46
47
if (process.env.VCINSTALLDIR) {
0 commit comments