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
This line will fail occasionally because subprocess does not appropriately escape strings. This issue can be resolved by turning iwyu into a string and setting shell=True.
These settings are why the below runs without issue:
defbuild(command: List[str], directory: str):
"""Runs a command as a subprocess to build a .i file in the target directory"""os.chdir(directory)
try:
subprocess.check_call(" ".join(command), shell=True)
This issue was identified during the last day of development but an appropriate solution beyond shell=True has not been identified.
The text was updated successfully, but these errors were encountered:
This line will fail occasionally because subprocess does not appropriately escape strings. This issue can be resolved by turning iwyu into a string and setting shell=True.
These settings are why the below runs without issue:
This issue was identified during the last day of development but an appropriate solution beyond shell=True has not been identified.
The text was updated successfully, but these errors were encountered: