From 522b3e60417f76794a7c972cc8580b7006b060ed Mon Sep 17 00:00:00 2001 From: Bugen Zhao Date: Fri, 8 Nov 2024 17:54:47 +0800 Subject: [PATCH] don't build dashboard in dev profile Signed-off-by: Bugen Zhao --- Formula/risingwave.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/risingwave.rb b/Formula/risingwave.rb index 61f5128..8c66aba 100644 --- a/Formula/risingwave.rb +++ b/Formula/risingwave.rb @@ -55,6 +55,7 @@ def install end # Enable building embedded dashboard. + ENV["ENABLE_BUILD_DASHBOARD"] = "1" if build.without?("dev-profile") # Currently we don't support Python 3.13. ENV["PYO3_PYTHON"] = "python3.12"