Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Revert change b5eb937 to see if it (#168)
Browse files Browse the repository at this point in the history
fixes the signed build issue.
  • Loading branch information
pieths authored Jul 3, 2019
1 parent 29af47a commit 4822871
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,9 @@ echo "#################################"
:: Setting native code build environment
echo Setting native build environment ...
set _VSWHERE="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe"
set vswhereOutputFile=vswhereOutput.tmp

if exist %_VSWHERE% (
%_VSWHERE% -version "[15.0,16.0)" -latest -prerelease -property installationPath > %vswhereOutputFile%
for /f "tokens=* delims=" %%i in (%vswhereOutputFile%) do set _VSCOMNTOOLS=%%i\Common7\Tools
del %vswhereOutputFile%
for /f "usebackq tokens=*" %%i in (`%_VSWHERE% -latest -prerelease -property installationPath`) do set _VSCOMNTOOLS=%%i\Common7\Tools
)
if not exist "%_VSCOMNTOOLS%" set _VSCOMNTOOLS=%VS140COMNTOOLS%
if not exist "%_VSCOMNTOOLS%" goto :MissingVersion
Expand Down

0 comments on commit 4822871

Please sign in to comment.