From 593c2b0a8dbe92c7c715b11f32512b0b17030979 Mon Sep 17 00:00:00 2001 From: canisLupus1313 <85344032+canisLupus1313@users.noreply.github.com> Date: Thu, 17 Nov 2022 17:52:22 +0100 Subject: [PATCH] [bootstrap] remove brew from apt package installations (#8399) This commit chages incorrect pkg manager tool used in `install_packages_pretty_format` from brew to apt-get. --- script/bootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/bootstrap b/script/bootstrap index 9a4479c35..cf4fff962 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -46,8 +46,8 @@ install_packages_pretty_format() # add mdv for local size report python3 -m pip install mdv || echo 'WARNING: could not install mdv, which is required to post markdown size report for OpenThread.' - # add shfmt for shell pretty, try brew only because snap does not support home directory not being /home and doesn't work in docker. - command -v shfmt || brew install shfmt || echo 'WARNING: could not install shfmt, which is useful if you plan to contribute shell scripts to the OpenThread project.' + # add shfmt for shell pretty + command -v shfmt || sudo apt-get install shfmt || echo 'WARNING: could not install shfmt, which is useful if you plan to contribute shell scripts to the OpenThread project.' } install_packages_apt()