Skip to content

Commit ea5e3b3

Browse files
committed
verify if the imports are installed
1 parent 009dbb6 commit ea5e3b3

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

builder/actions/install.py

-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ def run(self, env):
134134
imports = env.project.get_imports(env.spec)
135135
for imp in imports:
136136
if imp.compiler:
137-
print("install imports : {}".format(imp))
138137
imp.install(env)
139138

140139
export_compiler(env.spec.compiler, env)

builder/core/project.py

+1
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,7 @@ def install(self, env):
596596
""" Can be overridden to install a project from anywhere """
597597
imports = self.get_imports(env.spec)
598598
for imp in imports:
599+
print("install imports : {}".format(imp))
599600
imp.install(env)
600601

601602
def cmake_args(self, env):

0 commit comments

Comments
 (0)