Skip to content
This repository was archived by the owner on Jan 15, 2021. It is now read-only.

Commit 97dcfa8

Browse files
James CrosbyJames Crosby
James Crosby
authored and
James Crosby
committed
fix yotta link
1 parent b044bda commit 97dcfa8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

yotta/install.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,12 @@ def installDeps(args):
5454
# module into the global modules dir
5555
raise NotImplementedError()
5656
else:
57+
install_linked = False
58+
if 'install_linked' in args:
59+
install_linked = args.install_linked
5760
components, errors = c.satisfyDependenciesRecursive(
5861
target = target,
59-
traverse_links = args.install_linked,
62+
traverse_links = install_linked,
6063
available_components = [(c.getName(), c)]
6164
)
6265
for error in errors:

0 commit comments

Comments
 (0)