Skip to content

Commit f1599a7

Browse files
committed
try clang and doxy?
1 parent 2246f91 commit f1599a7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

build_platform.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
os.environ["PATH"] += os.pathsep + BUILD_DIR + "/bin"
2121
print("build dir:", BUILD_DIR)
22-
os.system('pwd')
23-
os.system('ls -lA')
22+
#os.system('pwd')
23+
#os.system('ls -lA')
2424

2525
CROSS = u'\N{cross mark}'
2626
CHECK = u'\N{check mark}'
@@ -93,7 +93,8 @@ def run_or_die(cmd, error):
9393
deps = line.replace("depends=", "").split(",")
9494
for dep in deps:
9595
dep = dep.strip()
96-
run_or_die('arduino-cli lib install "'+dep+'"',
96+
print(colored.yellow("Installing "+dep))
97+
run_or_die('arduino-cli lib install "'+dep+'" > /dev/null',
9798
"FAILED to install dependancy "+dep)
9899
except OSError:
99100
pass # no library properties

0 commit comments

Comments
 (0)