stm32pio
stm32pio copied to clipboard
Use arbitrary strings for _cmd parameters
For commands such platformio_cmd values like python -m platformio should be a valid ones. Possible solutions:
- Use
subprocess.run(shell=True)option - Store as a list of strings, then concatenate and sanitize before feeding to
subprocess