You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Silence echo in do command within run_python_compiler.bat
The emscan-deps.bat file produces invalid dynamic dependency files, suffix `.ddi`, due to the `do` command being echoed. The output of the scan step is used to create a temporary file that then is renamed into the built .ddi file.
Example of emscripten build generated file:
```
D:\emscriptenDebug\out>()
{
"revision": 0,
"rules": [
{
"primary-output": "CMakeFiles\\demoApp.dir\\demoApp.cpp.o"
}
],
"version": 1
}
```
This file should be a validly formed JSON document, instead we have a blank line and a line produced by the `do` command preceding the JSON document
This commit represents one proposed solution
0 commit comments