We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
python3
1 parent fd6a45b commit ded9731Copy full SHA for ded9731
Formula/deno.rb
@@ -83,9 +83,10 @@ def install
83
ENV["FORCE_MAC_SDK_MIN"] = MacOS.version
84
end
85
86
+ python3 = "python3.10"
87
# env args for building a release build with our python3, ninja and gn
88
ENV.prepend_path "PATH", Formula["python@3.10"].libexec/"bin"
- ENV["PYTHON"] = Formula["python@3.10"].opt_bin/"python3"
89
+ ENV["PYTHON"] = Formula["python@3.10"].opt_bin/python3
90
ENV["GN"] = buildpath/"gn/out/gn"
91
ENV["NINJA"] = Formula["ninja"].opt_bin/"ninja"
92
# build rusty_v8 from source
@@ -96,7 +97,7 @@ def install
96
97
98
resource("gn").stage buildpath/"gn"
99
cd "gn" do
- system "python3", "build/gen.py"
100
+ system python3, "build/gen.py"
101
system "ninja", "-C", "out"
102
103
0 commit comments