Skip to content

Commit 49bbdde

Browse files
committed
fix cmd
1 parent 8ad81ec commit 49bbdde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/ci/bsp_buildings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def run_cmd(cmd, output_info=True):
2121
res = 0
2222

2323
if output_info:
24-
res = os.system('/bin/bash -c' + cmd + " > output.txt 2>&1")
24+
res = os.system('/bin/bash -c' + '"' + cmd + " > output.txt 2>&1" + '"')
2525
else:
2626
res = os.system(cmd + " > /dev/null 2>output.txt")
2727

0 commit comments

Comments
 (0)