From 72fbae01bee898cd46b4ca24f6c745d9150f25f7 Mon Sep 17 00:00:00 2001 From: Derek Cormier Date: Tue, 13 Sep 2022 13:39:53 -0700 Subject: [PATCH] build(bazel): fix a circular dep in aio Probably caused by some incompatible merges. --- aio/BUILD.bazel | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aio/BUILD.bazel b/aio/BUILD.bazel index f92c85250e1..6e1b2181ad6 100644 --- a/aio/BUILD.bazel +++ b/aio/BUILD.bazel @@ -187,7 +187,7 @@ architect( name = "build-app", args = [ "site:build:stable", - "--output-path=build", + "--output-path=build-app", ], chdir = "$(RULEDIR)", configuration_env_vars = ["NG_BUILD_CACHE"], @@ -207,12 +207,12 @@ npm_package_bin( outs = ["404.html"], args = [ "$(execpath src/404-body.html)", - "$(execpath :build)", + "$(execpath :build-app)", "$@", ], data = [ "src/404-body.html", - ":build", + ":build-app", ], tool = "//aio/scripts:build-404-page", ) @@ -226,7 +226,7 @@ copy_to_directory( ":build-app", ], replace_prefixes = { - "build": "", + "build-app": "", }, )