switched to f-strings

This commit is contained in:
Raunak
2024-04-15 11:25:36 -07:00
parent 5bb479dc97
commit e46de6348d

View File

@@ -892,8 +892,8 @@ def set_clang_compiler_path_win(environ_cp):
)
write_action_env_to_bazelrc('CLANG_COMPILER_PATH', clang_compiler_path)
write_to_bazelrc('build --repo_env=CC="{}"'.format(clang_compiler_path))
write_to_bazelrc('build --repo_env=BAZEL_COMPILER="{}"'.format(clang_compiler_path))
write_to_bazelrc(f'build --repo_env=CC="{clang_compiler_path}"')
write_to_bazelrc(f'build --repo_env=BAZEL_COMPILER="{clang_compiler_path}"')
return clang_compiler_path