-
-
Notifications
You must be signed in to change notification settings - Fork 799
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
platformio run command blocks platformio init completion in subprocess #283
Comments
See "Troubleshooting" section from installation page http://docs.platformio.org/en/latest/installation.html#troubleshooting You have to use |
Don't forget upgrade ( |
this is in your code, so I don't see how you can close it. Please see the link. NOTE: I'm using what is in 2.3.0 by using the develop branch The only command i ran is |
Thanks! I'll fix it. Looks like critical bug, maybe I'll release 2.3.1 today. |
Thanks a lot for this report!!! 👍 PlatformIO 2.3.1 is released! |
Currently, if you run
platformio init --ide=anything
with a non-existent~/.platformio
it will not run to completion and simply hangs waiting for user response. This prompt is never shown to the user due to subprocess execution here: https://github.com/platformio/platformio/blob/develop/platformio/ide/projectgenerator.py#L55Here is the prompt (after some debugging):
The platform 'nordicnrf51' has not been installed yet. Would you like to install it now? [y/N]:
.Is there any way we can avoid calling another command here and simply do whatever run does internally instead?
The text was updated successfully, but these errors were encountered: