tools: installer: add PYTHONUNBUFFERED=1 when calling idf_tools.py
Fixes the issue that there is no output from 'idf_tools.py install' stage.
This commit is contained in:
parent
972aeec265
commit
24e793baa3
1 changed files with 2 additions and 0 deletions
|
@ -236,6 +236,8 @@ begin
|
||||||
{ IDFPath not quoted, as it can not contain spaces }
|
{ IDFPath not quoted, as it can not contain spaces }
|
||||||
IDFToolsPyCmd := PythonExecutablePath + ' "' + IDFToolsPyCmd + '" --idf-path ' + IDFPath + JSONArg;
|
IDFToolsPyCmd := PythonExecutablePath + ' "' + IDFToolsPyCmd + '" --idf-path ' + IDFPath + JSONArg;
|
||||||
|
|
||||||
|
SetEnvironmentVariable('PYTHONUNBUFFERED', '1')
|
||||||
|
|
||||||
Log('idf_tools.py command: ' + IDFToolsPyCmd);
|
Log('idf_tools.py command: ' + IDFToolsPyCmd);
|
||||||
CmdLine := IDFToolsPyCmd + ' install';
|
CmdLine := IDFToolsPyCmd + ' install';
|
||||||
Log('Installing tools:' + CmdLine);
|
Log('Installing tools:' + CmdLine);
|
||||||
|
|
Loading…
Reference in a new issue