Skip to content

Commit 08eabb4

Browse files
committed
Update --*-cmake-options to use format()
1 parent 5dbe28b commit 08eabb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/build-script

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,8 +533,8 @@ class BuildScriptInvocation(object):
533533
# really isn't a security issue here.
534534
if cmake_opts:
535535
impl_args += [
536-
"--%s-cmake-options=%s" %
537-
(product_name, ' '.join(cmake_opts))
536+
"--{}-cmake-options={}".format(
537+
product_name, ' '.join(cmake_opts))
538538
]
539539

540540
if args.build_stdlib_deployment_targets:

0 commit comments

Comments
 (0)