Skip to content

Commit c1667df

Browse files
committed
format
1 parent 3c25475 commit c1667df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builder/actions/cmake.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def _build_project(env, project, cmake_extra, build_tests=False, args_transforme
185185
# When cross compiling, we must inject the build_env into the cross compile container
186186
if toolchain.cross_compile:
187187
build_env = build_env + ['{}={}\n'.format(key, val)
188-
for key, val in config.get('build_env', {}).items()]
188+
for key, val in config.get('build_env', {}).items()]
189189
with open(toolchain.env_file, 'a') as f:
190190
f.writelines(build_env)
191191
# set parallism via env var (cmake's --parallel CLI option doesn't exist until 3.12)

0 commit comments

Comments
 (0)