We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2246f91 commit f1599a7Copy full SHA for f1599a7
build_platform.py
@@ -19,8 +19,8 @@
19
20
os.environ["PATH"] += os.pathsep + BUILD_DIR + "/bin"
21
print("build dir:", BUILD_DIR)
22
-os.system('pwd')
23
-os.system('ls -lA')
+#os.system('pwd')
+#os.system('ls -lA')
24
25
CROSS = u'\N{cross mark}'
26
CHECK = u'\N{check mark}'
@@ -93,7 +93,8 @@ def run_or_die(cmd, error):
93
deps = line.replace("depends=", "").split(",")
94
for dep in deps:
95
dep = dep.strip()
96
- run_or_die('arduino-cli lib install "'+dep+'"',
+ print(colored.yellow("Installing "+dep))
97
+ run_or_die('arduino-cli lib install "'+dep+'" > /dev/null',
98
"FAILED to install dependancy "+dep)
99
except OSError:
100
pass # no library properties
0 commit comments