Restrict the search for sestest.dll to within the out/sestest directory (#98)

This commit is contained in:
peterbom 2018-02-19 15:26:51 -08:00 коммит произвёл Bevan Arps
Родитель 33c94f7a54
Коммит 85ea663e7b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -5,7 +5,7 @@
# Find the latest version of sestest that was compiled
# [This will automatically find the right version, even if someone does a release
# build or if the output path changes e.g. becuase it's no longer netcoreapp2.0]
$sestest = get-childitem $PSScriptRoot\out\sestest.dll -recurse | sort-object LastWriteTimeUtc | select-object -last 1
$sestest = get-childitem $PSScriptRoot\out\sestest\sestest.dll -recurse | sort-object LastWriteTimeUtc | select-object -last 1
if ($sestest -eq $null)
{