From 4e06cec509e99b4b981fd289596bb33458be1bcd 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..99f5aac 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" unless build.with?("dev-profile") # Currently we don't support Python 3.13. ENV["PYO3_PYTHON"] = "python3.12"