File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 3232function do_install {
3333 if [[ ${do_brew} == 1 ]]; then
3434 for p in " $@ " ; do
35- if ! brew ls --versions " $p " > /dev/null ; then
35+ if ! brew ls --versions " $p " ; then
3636 HOMEBREW_NO_AUTO_UPDATE=1 brew install " $p " || gotErr
3737 fi
3838 done
@@ -48,11 +48,10 @@ if which python3 > /dev/null; then
4848elif [[ ${do_brew} == 1 ]]; then
4949 do_install python3
5050elif [[ ${do_port} == 1 ]]; then
51- do_install python311
51+ do_install python312
52+ do_install py312-pip
5253fi
5354
54- python3 -m ensurepip
55-
5655if [[ ${do_brew} == 1 ]]; then
5756 do_install zeromq
5857elif [[ ${do_port} == 1 ]]; then
6362
6463if [[ ${do_brew} == 1 ]]; then
6564 echo -e " \nSuggested packages to install manually:\n"
66- echo -e " brew install cppcheck clang-format@11 lcov"
65+ echo -e " brew install cppcheck clang-format@18 lcov"
6766elif [[ ${do_port} == 1 ]]; then
6867 echo -e " \nSuggested packages to install manually:\n"
6968 echo -e " sudo port install cppcheck lcov"
You can’t perform that action at this time.
0 commit comments