From ccea32c670254728fcd4e12e69e6d2829878660b Mon Sep 17 00:00:00 2001 From: Derek Cormier Date: Fri, 1 Apr 2022 10:23:50 -0700 Subject: [PATCH] fix: fix invalid format string --- lib/private/write_source_file.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/write_source_file.bzl b/lib/private/write_source_file.bzl index b187cb5..9b742b6 100644 --- a/lib/private/write_source_file.bzl +++ b/lib/private/write_source_file.bzl @@ -234,7 +234,7 @@ if exist "%in%\\*" ( "@rem Run the update scripts for all write_source_file deps", ]) for update_script in additional_update_scripts: - contents.append("call {update_script".format(update_script = update_script.short_path)) + contents.append("call {update_script}".format(update_script = update_script.short_path)) ctx.actions.write( output = updater,