Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
TingDaoK committed Feb 19, 2024
1 parent 3c25475 commit c1667df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/actions/cmake.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def _build_project(env, project, cmake_extra, build_tests=False, args_transforme
# When cross compiling, we must inject the build_env into the cross compile container
if toolchain.cross_compile:
build_env = build_env + ['{}={}\n'.format(key, val)
for key, val in config.get('build_env', {}).items()]
for key, val in config.get('build_env', {}).items()]
with open(toolchain.env_file, 'a') as f:
f.writelines(build_env)
# set parallism via env var (cmake's --parallel CLI option doesn't exist until 3.12)
Expand Down

0 comments on commit c1667df

Please sign in to comment.