Skip to content

Commit a50c2c2

Browse files
committed
fixing bootstrap
1 parent 4c98372 commit a50c2c2

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

dist/macos/bootstrap.sh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fi
3232
function 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
4848
elif [[ ${do_brew} == 1 ]]; then
4949
do_install python3
5050
elif [[ ${do_port} == 1 ]]; then
51-
do_install python311
51+
do_install python312
52+
do_install py312-pip
5253
fi
5354

54-
python3 -m ensurepip
55-
5655
if [[ ${do_brew} == 1 ]]; then
5756
do_install zeromq
5857
elif [[ ${do_port} == 1 ]]; then
@@ -63,7 +62,7 @@ set +x
6362

6463
if [[ ${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"
6766
elif [[ ${do_port} == 1 ]]; then
6867
echo -e "\nSuggested packages to install manually:\n"
6968
echo -e " sudo port install cppcheck lcov"

0 commit comments

Comments
 (0)