File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
examples/apple/coreml/scripts Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ def build_sdk_runner_including_coreml(
67
67
"./examples/sdk/build_sdk_example_runner.sh --coreml"
68
68
)
69
69
build_command : str = (
70
- f"{ cd_root_command } ; { conda_activate_env_command } ; { build_sdk_runner_command } "
70
+ f"{ cd_root_command } && { conda_activate_env_command } && { build_sdk_runner_command } "
71
71
)
72
72
subprocess .run (
73
73
f'bash -c "{ build_command } "' , shell = True , check = True
@@ -189,9 +189,8 @@ def generate_etdump_with_intermediate_values(
189
189
-etdump_path { et_dump_path .resolve ()} \
190
190
-debug_output_path { debug_buffer_path .resolve ()} \
191
191
-debug_buffer_size { debug_buffer_size } """
192
- run_command : str = f"{ sdk_runner_command } "
193
192
subprocess .run (
194
- f'bash -c "{ run_command } "' , shell = True , check = True
193
+ f'bash -c "{ sdk_runner_command } "' , shell = True , check = True
195
194
).check_returncode ()
196
195
197
196
You can’t perform that action at this time.
0 commit comments