Skip to content

Commit c8813f4

Browse files
build.py: fix clippy --verbose (#323)
1 parent 92515cc commit c8813f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uefi-test-runner/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def run_tool(tool, *flags):
7979
cmd = ['cargo', tool, '--target', target, *flags]
8080

8181
if SETTINGS['verbose']:
82-
print(' '.join(cmd))
82+
print(' '.join(str(arg) for arg in cmd))
8383

8484
sp.run(cmd, check=True)
8585

0 commit comments

Comments
 (0)