forked from platformio/platformio-core
Don't install desktop dev/platforms
This commit is contained in:
@ -22,6 +22,8 @@ def main():
|
||||
subprocess.check_output(
|
||||
["platformio", "platform", "search", "--json-output"]))
|
||||
for platform in platforms:
|
||||
if platform['forDesktop']:
|
||||
continue
|
||||
subprocess.check_call(
|
||||
["platformio", "platform", "install", platform['repository']])
|
||||
|
||||
|
Reference in New Issue
Block a user