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(
|
subprocess.check_output(
|
||||||
["platformio", "platform", "search", "--json-output"]))
|
["platformio", "platform", "search", "--json-output"]))
|
||||||
for platform in platforms:
|
for platform in platforms:
|
||||||
|
if platform['forDesktop']:
|
||||||
|
continue
|
||||||
subprocess.check_call(
|
subprocess.check_call(
|
||||||
["platformio", "platform", "install", platform['repository']])
|
["platformio", "platform", "install", platform['repository']])
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user