diff --git a/scripts/xtensa-build-zephyr.py b/scripts/xtensa-build-zephyr.py index 4f1deed0eb26..cb3af68f281d 100755 --- a/scripts/xtensa-build-zephyr.py +++ b/scripts/xtensa-build-zephyr.py @@ -968,7 +968,7 @@ def install_lib(sof_lib_dir, abs_build_dir, platform_wconfig): "-e", "-c", str(rimage_cfg), "-k", str(signing_key), "-l", "-r", str(llext_input)] - execute_command(sign_cmd, cwd=west_top) + subprocess.run(sign_cmd, cwd=west_top) # An intuitive way to make this multiline would be # with (open(dst, 'wb') as fdst, open(llext_output, 'rb') as fllext,