File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed
Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -59,12 +59,23 @@ brew --version
5959io::log_h2 " DEBUG: Brew doctor before update"
6060# brew doctor
6161
62- # Install v3.28.1 CMake
62+ # Install v3.27.2 CMake
6363io::log_h2 " DEBUG: Before brew install for cmake"
6464(
6565 cd " ${HOME} "
66+ mkdir homebrew-local-tap
67+ cd homebrew-local-tap
68+ git init
69+ mkdir Formula
70+
6671 curl -fsSL -o cmake.rb https://raw.githubusercontent.com/Homebrew/homebrew-core/fd21fcf239bcd0231c9fed5719403ec128151af4/Formula/cmake.rb
67- brew install --build-from-source ./cmake.rb
72+ mv cmake.rb ./Formula/
73+
74+ git add .
75+ git commit -m " Add CMake formula"
76+
77+ brew tap homebrew-local-tap " ${HOME} /homebrew-local-tap"
78+ brew install --build-from-source homebrew-local-tap/cmake
6879)
6980io::log_h2 " DEBUG: After brew install for cmake"
7081
You can’t perform that action at this time.
0 commit comments