Changing test; fixing null check

This commit is contained in:
Tim Heuer
2020-01-31 12:22:23 -08:00
parent 5817abf347
commit 3ef0817a4a
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -1294,7 +1294,7 @@ function run() {
// check to see if we are using a specific path for vswhere
let vswhereToolExe = '';
let cachedToolDirectory = '';
if (!VSWHERE_PATH) {
if (VSWHERE_PATH) {
// specified a path for vswhere, use it and cache the location
vswhereToolExe = path.join(VSWHERE_PATH, 'vswhere.exe');
cachedToolDirectory = yield toolCache.cacheDir(VSWHERE_PATH, 'vswhere', VSWHERE_VERSION);