Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Formula/f/flowpipe.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ class Flowpipe < Formula
sha256 cellar: :any_skip_relocation, x86_64_linux: "2c9b2da386e4f32aa027f6f91451644838b1d69eb5cbd3e6d5424b2c9dba229f"
end

depends_on "corepack" => :build
depends_on "go" => :build
depends_on "node" => :build

Expand All @@ -34,7 +35,8 @@ def install
system "corepack", "enable", "--install-directory", buildpath

cd "ui/form" do
system buildpath/"yarn", "install"
system Formula["corepack"].opt_bin/"corepack", "enable", "--install-directory", buildpath
system buildpath/"yarn", "install", "--immutable"
system buildpath/"yarn", "build"
end

Expand Down
Loading