Skip to content

Commit

Permalink
verify if the imports are installed
Browse files Browse the repository at this point in the history
  • Loading branch information
xiazhvera committed Jul 29, 2024
1 parent 009dbb6 commit ea5e3b3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion builder/actions/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ def run(self, env):
imports = env.project.get_imports(env.spec)
for imp in imports:
if imp.compiler:
print("install imports : {}".format(imp))
imp.install(env)

export_compiler(env.spec.compiler, env)
1 change: 1 addition & 0 deletions builder/core/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,7 @@ def install(self, env):
""" Can be overridden to install a project from anywhere """
imports = self.get_imports(env.spec)
for imp in imports:
print("install imports : {}".format(imp))
imp.install(env)

def cmake_args(self, env):
Expand Down

0 comments on commit ea5e3b3

Please sign in to comment.