From c03683b1602d54a9c44b6aff3e00e3f014ff24d3 Mon Sep 17 00:00:00 2001 From: "Jae H. Yoo" <40815393+jaeyoo@users.noreply.github.com> Date: Tue, 6 Jul 2021 08:00:37 -0700 Subject: [PATCH] Fix the error at genrule in Windows --- third_party/tf/tf_configure.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/tf/tf_configure.bzl b/third_party/tf/tf_configure.bzl index a6cde6893..f7ac5892a 100644 --- a/third_party/tf/tf_configure.bzl +++ b/third_party/tf/tf_configure.bzl @@ -172,7 +172,7 @@ def _symlink_genrule_for_dir( genrule = _genrule( genrule_name, - " && ".join(command), + ";\n".join(command), "\n".join(outs), ) return genrule